├── .gitignore ├── CITE.me ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cpp ├── .clang-format ├── CMakeLists.txt ├── cmake │ └── config.cmake.in ├── examples │ ├── CMakeLists.txt │ └── track-pupil.cpp ├── include │ └── eyerec │ │ ├── PuRe.hpp │ │ ├── PuReST.hpp │ │ ├── Pupil.hpp │ │ ├── PupilDetectionMethod.hpp │ │ ├── PupilTrackingMethod.hpp │ │ ├── Timestamp.hpp │ │ └── TrackingByDetection.hpp └── src │ ├── common │ ├── ocv_utils.cpp │ └── ocv_utils.hpp │ └── pupil │ ├── detection │ ├── PuRe │ │ └── PuRe.cpp │ └── PupilDetectionMethod.cpp │ └── tracking │ ├── PuReST │ └── PuReST.cpp │ └── PupilTrackingMethod.cpp ├── references.bib └── resources └── icons └── eyerec.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/.gitignore -------------------------------------------------------------------------------- /CITE.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/CITE.me -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/README.md -------------------------------------------------------------------------------- /cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/.clang-format -------------------------------------------------------------------------------- /cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/cmake/config.cmake.in -------------------------------------------------------------------------------- /cpp/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/examples/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/examples/track-pupil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/examples/track-pupil.cpp -------------------------------------------------------------------------------- /cpp/include/eyerec/PuRe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/PuRe.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/PuReST.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/PuReST.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/Pupil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/Pupil.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/PupilDetectionMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/PupilDetectionMethod.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/PupilTrackingMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/PupilTrackingMethod.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/Timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/Timestamp.hpp -------------------------------------------------------------------------------- /cpp/include/eyerec/TrackingByDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/include/eyerec/TrackingByDetection.hpp -------------------------------------------------------------------------------- /cpp/src/common/ocv_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/common/ocv_utils.cpp -------------------------------------------------------------------------------- /cpp/src/common/ocv_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/common/ocv_utils.hpp -------------------------------------------------------------------------------- /cpp/src/pupil/detection/PuRe/PuRe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/pupil/detection/PuRe/PuRe.cpp -------------------------------------------------------------------------------- /cpp/src/pupil/detection/PupilDetectionMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/pupil/detection/PupilDetectionMethod.cpp -------------------------------------------------------------------------------- /cpp/src/pupil/tracking/PuReST/PuReST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/pupil/tracking/PuReST/PuReST.cpp -------------------------------------------------------------------------------- /cpp/src/pupil/tracking/PupilTrackingMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/cpp/src/pupil/tracking/PupilTrackingMethod.cpp -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/references.bib -------------------------------------------------------------------------------- /resources/icons/eyerec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcsantini/eyerec/HEAD/resources/icons/eyerec.svg --------------------------------------------------------------------------------