Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Thiago Santini
EyeRecToo
Commits
4106fef8
Commit
4106fef8
authored
Apr 30, 2018
by
Thiago Santini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds proper PuReST reference
parent
6a4ad9e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
EyeRecToo/src/EyeImageProcessor.h
EyeRecToo/src/EyeImageProcessor.h
+3
-2
EyeRecToo/src/MainWindow.cpp
EyeRecToo/src/MainWindow.cpp
+6
-1
EyeRecToo/src/pupil-detection/PuRe.cpp
EyeRecToo/src/pupil-detection/PuRe.cpp
+1
-1
No files found.
EyeRecToo/src/EyeImageProcessor.h
View file @
4106fef8
...
...
@@ -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"
);
...
...
EyeRecToo/src/MainWindow.cpp
View file @
4106fef8
...
...
@@ -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"
,
"2018
a
"
,
"https://www.sciencedirect.com/science/article/pii/S1077314218300146"
);
ReferenceList
::
add
(
"Santini et al."
,
...
...
EyeRecToo/src/pupil-detection/PuRe.cpp
View file @
4106fef8
...
...
@@ -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 2018
a
)"
;
PuRe
::
PuRe
()
:
baseSize
(
320
,
240
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment