From 4106fef867a09c8483d8993eec9472ffab60ea11 Mon Sep 17 00:00:00 2001 From: Thiago Santini Date: Mon, 30 Apr 2018 10:17:59 +0200 Subject: [PATCH] Adds proper PuReST reference --- EyeRecToo/src/EyeImageProcessor.h | 5 +++-- EyeRecToo/src/MainWindow.cpp | 7 ++++++- EyeRecToo/src/pupil-detection/PuRe.cpp | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/EyeRecToo/src/EyeImageProcessor.h b/EyeRecToo/src/EyeImageProcessor.h index 3a4a785..f7b34a5 100644 --- a/EyeRecToo/src/EyeImageProcessor.h +++ b/EyeRecToo/src/EyeImageProcessor.h @@ -166,6 +166,7 @@ public: QFormLayout *formLayout; QGroupBox *box; + // TODO: make sure that the tooltip/whatsthis things are set for the QLabels as well box = new QGroupBox("Preprocessing"); formLayout = new QFormLayout(); widthSB = new QSpinBox(); @@ -221,9 +222,9 @@ public: pupilDetectionComboBox = new QComboBox(); formLayout->addRow(pupilDetectionComboBox); trackingBox = new QCheckBox(); - trackingBox->setWhatsThis("Track the pupil after detection."); + trackingBox->setWhatsThis("Track the pupil after detection using PuReST."); trackingBox->setToolTip(box->whatsThis()); - formLayout->addRow( new QLabel("Tracking:"), trackingBox ); + formLayout->addRow( new QLabel("PuReST (Santini et al. 2018b):"), trackingBox ); layout->addWidget(box); applyButton = new QPushButton("Apply"); diff --git a/EyeRecToo/src/MainWindow.cpp b/EyeRecToo/src/MainWindow.cpp index 9d3c2c2..aabbb1c 100644 --- a/EyeRecToo/src/MainWindow.cpp +++ b/EyeRecToo/src/MainWindow.cpp @@ -484,9 +484,14 @@ void MainWindow::menuOption(QAction* action) void MainWindow::showReferencesDialog() { + ReferenceList::add( "Santini et al.", + "PuReST: Robust pupil tracking for real-time pervasive eye tracking", + "ETRA", "2018b", + "https://doi.org/10.1145/3204493.3204578" + ); ReferenceList::add( "Santini et al.", "PuRe: Robust pupil detection for real-time pervasive eye tracking", - "CVIU", "2018", + "CVIU", "2018a", "https://www.sciencedirect.com/science/article/pii/S1077314218300146" ); ReferenceList::add( "Santini et al.", diff --git a/EyeRecToo/src/pupil-detection/PuRe.cpp b/EyeRecToo/src/pupil-detection/PuRe.cpp index 544a578..6c24fcd 100644 --- a/EyeRecToo/src/pupil-detection/PuRe.cpp +++ b/EyeRecToo/src/pupil-detection/PuRe.cpp @@ -49,7 +49,7 @@ using namespace std; using namespace cv; -string PuRe::desc = "PuRe (Santini et. al 2018)"; +string PuRe::desc = "PuRe (Santini et. al 2018a)"; PuRe::PuRe() : baseSize(320,240), -- GitLab