├── LICENSE ├── README.md ├── image_example ├── BT8SOVuCYAAhxhz.jpg ├── IMG_20140809_214633.jpg ├── d1.jpg ├── dopdopdopdop.jpg ├── keylockip.png └── neko4.png ├── library ├── bin │ ├── opencv_core230.dll │ ├── opencv_highgui230.dll │ └── opencv_imgproc230.dll ├── include │ ├── CMakeLists.txt │ ├── opencv │ │ ├── cv.h │ │ ├── cv.hpp │ │ ├── cvaux.h │ │ ├── cvaux.hpp │ │ ├── cvwimage.h │ │ ├── cxcore.h │ │ ├── cxcore.hpp │ │ ├── cxeigen.hpp │ │ ├── cxmisc.h │ │ ├── highgui.h │ │ └── ml.h │ └── opencv2 │ │ ├── calib3d │ │ └── calib3d.hpp │ │ ├── contrib │ │ └── contrib.hpp │ │ ├── core │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── eigen.hpp │ │ ├── internal.hpp │ │ ├── mat.hpp │ │ ├── operations.hpp │ │ ├── types_c.h │ │ ├── version.hpp │ │ └── wimage.hpp │ │ ├── features2d │ │ └── features2d.hpp │ │ ├── flann │ │ ├── all_indices.h │ │ ├── allocator.h │ │ ├── autotuned_index.h │ │ ├── composite_index.h │ │ ├── dist.h │ │ ├── flann.hpp │ │ ├── flann_base.hpp │ │ ├── general.h │ │ ├── ground_truth.h │ │ ├── hdf5.h │ │ ├── heap.h │ │ ├── index_testing.h │ │ ├── kdtree_index.h │ │ ├── kmeans_index.h │ │ ├── linear_index.h │ │ ├── logger.h │ │ ├── matrix.h │ │ ├── nn_index.h │ │ ├── object_factory.h │ │ ├── random.h │ │ ├── result_set.h │ │ ├── sampling.h │ │ ├── saving.h │ │ ├── simplex_downhill.h │ │ └── timer.h │ │ ├── gpu │ │ ├── devmem2d.hpp │ │ ├── gpu.hpp │ │ ├── matrix_operations.hpp │ │ └── stream_accessor.hpp │ │ ├── haartraining │ │ ├── CMakeLists.txt │ │ ├── _cvcommon.h │ │ ├── _cvhaartraining.h │ │ ├── createsamples.cpp │ │ ├── cvboost.cpp │ │ ├── cvclassifier.h │ │ ├── cvcommon.cpp │ │ ├── cvhaarclassifier.cpp │ │ ├── cvhaartraining.cpp │ │ ├── cvhaartraining.h │ │ ├── cvsamples.cpp │ │ ├── haartraining.cpp │ │ └── performance.cpp │ │ ├── highgui │ │ ├── highgui.hpp │ │ └── highgui_c.h │ │ ├── imgproc │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ └── types_c.h │ │ ├── legacy │ │ ├── blobtrack.hpp │ │ ├── compat.hpp │ │ ├── legacy.hpp │ │ └── streams.hpp │ │ ├── objdetect │ │ └── objdetect.hpp │ │ ├── opencv.hpp │ │ └── video │ │ ├── background_segm.hpp │ │ └── tracking.hpp ├── lib │ ├── opencv_core230.lib │ ├── opencv_highgui230.lib │ └── opencv_imgproc230.lib └── opencv-2.3.0.props ├── parameters └── test_parameters.txt ├── result_example ├── bandicam 2015-01-15 19-43-02-179.avi ├── bandicam 2016-06-13 22-28-13-039.avi ├── mangaa.gif └── myong.gif └── src ├── eyemanager.cpp ├── eyemanager.h ├── funccollect.h ├── main.cpp ├── opencv_core230.dll ├── opencv_highgui230.dll ├── opencv_imgproc230.dll ├── semi_main.cpp └── vector2f.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/README.md -------------------------------------------------------------------------------- /image_example/BT8SOVuCYAAhxhz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/BT8SOVuCYAAhxhz.jpg -------------------------------------------------------------------------------- /image_example/IMG_20140809_214633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/IMG_20140809_214633.jpg -------------------------------------------------------------------------------- /image_example/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/d1.jpg -------------------------------------------------------------------------------- /image_example/dopdopdopdop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/dopdopdopdop.jpg -------------------------------------------------------------------------------- /image_example/keylockip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/keylockip.png -------------------------------------------------------------------------------- /image_example/neko4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/image_example/neko4.png -------------------------------------------------------------------------------- /library/bin/opencv_core230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/bin/opencv_core230.dll -------------------------------------------------------------------------------- /library/bin/opencv_highgui230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/bin/opencv_highgui230.dll -------------------------------------------------------------------------------- /library/bin/opencv_imgproc230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/bin/opencv_imgproc230.dll -------------------------------------------------------------------------------- /library/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cv.h -------------------------------------------------------------------------------- /library/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cv.hpp -------------------------------------------------------------------------------- /library/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cvaux.h -------------------------------------------------------------------------------- /library/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /library/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /library/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cxcore.h -------------------------------------------------------------------------------- /library/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /library/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /library/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /library/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/highgui.h -------------------------------------------------------------------------------- /library/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv/ml.h -------------------------------------------------------------------------------- /library/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /library/include/opencv2/contrib/contrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/contrib/contrib.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /library/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /library/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /library/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /library/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /library/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /library/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /library/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /library/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /library/include/opencv2/gpu/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/gpu/devmem2d.hpp -------------------------------------------------------------------------------- /library/include/opencv2/gpu/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/gpu/gpu.hpp -------------------------------------------------------------------------------- /library/include/opencv2/gpu/matrix_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/gpu/matrix_operations.hpp -------------------------------------------------------------------------------- /library/include/opencv2/gpu/stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/gpu/stream_accessor.hpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/_cvcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/_cvcommon.h -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/_cvhaartraining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/_cvhaartraining.h -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/createsamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/createsamples.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvboost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvboost.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvclassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvclassifier.h -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvcommon.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvhaarclassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvhaarclassifier.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvhaartraining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvhaartraining.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvhaartraining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvhaartraining.h -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/cvsamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/cvsamples.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/haartraining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/haartraining.cpp -------------------------------------------------------------------------------- /library/include/opencv2/haartraining/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/haartraining/performance.cpp -------------------------------------------------------------------------------- /library/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /library/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /library/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /library/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /library/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /library/include/opencv2/legacy/blobtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/legacy/blobtrack.hpp -------------------------------------------------------------------------------- /library/include/opencv2/legacy/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/legacy/compat.hpp -------------------------------------------------------------------------------- /library/include/opencv2/legacy/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/legacy/legacy.hpp -------------------------------------------------------------------------------- /library/include/opencv2/legacy/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/legacy/streams.hpp -------------------------------------------------------------------------------- /library/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /library/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /library/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /library/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /library/lib/opencv_core230.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/lib/opencv_core230.lib -------------------------------------------------------------------------------- /library/lib/opencv_highgui230.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/lib/opencv_highgui230.lib -------------------------------------------------------------------------------- /library/lib/opencv_imgproc230.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/lib/opencv_imgproc230.lib -------------------------------------------------------------------------------- /library/opencv-2.3.0.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/library/opencv-2.3.0.props -------------------------------------------------------------------------------- /parameters/test_parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/parameters/test_parameters.txt -------------------------------------------------------------------------------- /result_example/bandicam 2015-01-15 19-43-02-179.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/result_example/bandicam 2015-01-15 19-43-02-179.avi -------------------------------------------------------------------------------- /result_example/bandicam 2016-06-13 22-28-13-039.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/result_example/bandicam 2016-06-13 22-28-13-039.avi -------------------------------------------------------------------------------- /result_example/mangaa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/result_example/mangaa.gif -------------------------------------------------------------------------------- /result_example/myong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/result_example/myong.gif -------------------------------------------------------------------------------- /src/eyemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/eyemanager.cpp -------------------------------------------------------------------------------- /src/eyemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/eyemanager.h -------------------------------------------------------------------------------- /src/funccollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/funccollect.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/opencv_core230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/opencv_core230.dll -------------------------------------------------------------------------------- /src/opencv_highgui230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/opencv_highgui230.dll -------------------------------------------------------------------------------- /src/opencv_imgproc230.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/opencv_imgproc230.dll -------------------------------------------------------------------------------- /src/semi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/semi_main.cpp -------------------------------------------------------------------------------- /src/vector2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hinohie/eye_maker/HEAD/src/vector2f.h --------------------------------------------------------------------------------