├── .gitignore ├── CMakeLists.txt ├── README.md ├── sample ├── DSSTcpp_sample_image_sequence_linux.sh ├── DSSTcpp_sample_image_sequence_windows.bat ├── DSSTcpp_sample_video_linux.sh ├── DSSTcpp_sample_video_windows.bat ├── KCFcpp_sample_image_sequence_linux.sh ├── KCFcpp_sample_image_sequence_windows.bat ├── KCFcpp_sample_video_linux.sh ├── KCFcpp_sample_video_windows.bat ├── README.txt └── sample_sequence_compressed │ ├── 00001.jpg │ ├── 00002.jpg │ ├── 00003.jpg │ ├── 00004.jpg │ ├── 00005.jpg │ ├── 00006.jpg │ ├── 00007.jpg │ ├── 00008.jpg │ ├── 00009.jpg │ ├── 00010.jpg │ ├── 00011.jpg │ ├── 00012.jpg │ ├── 00013.jpg │ ├── 00014.jpg │ ├── 00015.jpg │ ├── 00016.jpg │ ├── 00017.jpg │ ├── 00018.jpg │ ├── 00019.jpg │ ├── 00020.jpg │ ├── 00021.jpg │ ├── 00022.jpg │ ├── 00023.jpg │ ├── 00024.jpg │ ├── 00025.jpg │ ├── 00026.jpg │ ├── 00027.jpg │ ├── 00028.jpg │ ├── 00029.jpg │ ├── 00030.jpg │ ├── 00031.jpg │ ├── 00032.jpg │ ├── 00033.jpg │ ├── 00034.jpg │ ├── 00035.jpg │ ├── 00036.jpg │ ├── 00037.jpg │ ├── 00038.jpg │ ├── 00039.jpg │ ├── 00040.jpg │ ├── 00041.jpg │ ├── 00042.jpg │ ├── 00043.jpg │ ├── 00044.jpg │ ├── 00045.jpg │ ├── 00046.jpg │ ├── 00047.jpg │ ├── 00048.jpg │ ├── 00049.jpg │ ├── 00050.jpg │ ├── 00051.jpg │ ├── 00052.jpg │ ├── 00053.jpg │ ├── LICENSE.txt │ └── sample_sequence_compressed.avi └── src ├── 3rdparty ├── cv_ext │ ├── init_box_selector.cpp │ ├── init_box_selector.hpp │ ├── math_spectrums.cpp │ ├── math_spectrums.hpp │ ├── psr.hpp │ ├── shift.cpp │ ├── shift.hpp │ ├── tracker_run.cpp │ └── tracker_run.hpp ├── piotr │ ├── README.md │ ├── gradientMex.hpp │ └── src │ │ ├── gradientMex.cpp │ │ ├── sse.hpp │ │ └── wrappers.hpp └── tclap │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ └── tclap │ ├── Arg.h │ ├── ArgException.h │ ├── ArgTraits.h │ ├── CmdLine.h │ ├── CmdLineInterface.h │ ├── CmdLineOutput.h │ ├── Constraint.h │ ├── DocBookOutput.h │ ├── HelpVisitor.h │ ├── IgnoreRestVisitor.h │ ├── Makefile.am │ ├── Makefile.in │ ├── MultiArg.h │ ├── MultiSwitchArg.h │ ├── OptionalUnlabeledTracker.h │ ├── StandardTraits.h │ ├── StdOutput.h │ ├── SwitchArg.h │ ├── UnlabeledMultiArg.h │ ├── UnlabeledValueArg.h │ ├── ValueArg.h │ ├── ValuesConstraint.h │ ├── VersionVisitor.h │ ├── Visitor.h │ ├── XorHandler.h │ └── ZshCompletionOutput.h ├── cf_libs ├── common │ ├── cf_tracker.hpp │ ├── cv_ext.hpp │ ├── feature_channels.hpp │ ├── mat_consts.hpp │ ├── math_helper.cpp │ ├── math_helper.hpp │ ├── scale_estimator.hpp │ └── tracker_debug.hpp ├── dsst │ ├── dsst_debug.hpp │ └── dsst_tracker.hpp └── kcf │ ├── kcf_debug.hpp │ └── kcf_tracker.hpp └── main ├── image_acquisition.cpp ├── image_acquisition.hpp ├── main_dsst.cpp └── main_kcf.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/README.md -------------------------------------------------------------------------------- /sample/DSSTcpp_sample_image_sequence_linux.sh: -------------------------------------------------------------------------------- 1 | ./DSSTcpp -b 261,48,39,65 -o results.txt -s sample_sequence_compressed -i /%.05d.jpg 2 | -------------------------------------------------------------------------------- /sample/DSSTcpp_sample_image_sequence_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/DSSTcpp_sample_image_sequence_windows.bat -------------------------------------------------------------------------------- /sample/DSSTcpp_sample_video_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/DSSTcpp_sample_video_linux.sh -------------------------------------------------------------------------------- /sample/DSSTcpp_sample_video_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/DSSTcpp_sample_video_windows.bat -------------------------------------------------------------------------------- /sample/KCFcpp_sample_image_sequence_linux.sh: -------------------------------------------------------------------------------- 1 | ./KCFcpp -b 261,48,39,65 -o results.txt -s sample_sequence_compressed -i /%.05d.jpg 2 | -------------------------------------------------------------------------------- /sample/KCFcpp_sample_image_sequence_windows.bat: -------------------------------------------------------------------------------- 1 | KCFcpp.exe -b 261,48,39,65 -o results.txt -s sample_sequence_compressed -i /%%.05d.jpg -------------------------------------------------------------------------------- /sample/KCFcpp_sample_video_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/KCFcpp_sample_video_linux.sh -------------------------------------------------------------------------------- /sample/KCFcpp_sample_video_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/KCFcpp_sample_video_windows.bat -------------------------------------------------------------------------------- /sample/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/README.txt -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00001.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00002.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00003.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00004.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00005.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00006.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00007.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00008.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00009.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00010.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00011.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00012.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00013.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00014.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00015.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00016.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00017.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00018.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00019.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00020.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00021.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00022.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00023.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00024.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00025.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00026.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00027.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00028.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00029.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00030.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00031.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00032.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00033.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00034.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00035.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00036.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00037.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00038.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00039.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00040.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00041.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00042.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00043.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00044.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00045.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00046.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00047.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00048.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00049.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00050.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00051.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00052.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/00053.jpg -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/LICENSE.txt -------------------------------------------------------------------------------- /sample/sample_sequence_compressed/sample_sequence_compressed.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/sample/sample_sequence_compressed/sample_sequence_compressed.avi -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/init_box_selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/init_box_selector.cpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/init_box_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/init_box_selector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/math_spectrums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/math_spectrums.cpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/math_spectrums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/math_spectrums.hpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/psr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/psr.hpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/shift.cpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/shift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/shift.hpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/tracker_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/tracker_run.cpp -------------------------------------------------------------------------------- /src/3rdparty/cv_ext/tracker_run.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/cv_ext/tracker_run.hpp -------------------------------------------------------------------------------- /src/3rdparty/piotr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/piotr/README.md -------------------------------------------------------------------------------- /src/3rdparty/piotr/gradientMex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/piotr/gradientMex.hpp -------------------------------------------------------------------------------- /src/3rdparty/piotr/src/gradientMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/piotr/src/gradientMex.cpp -------------------------------------------------------------------------------- /src/3rdparty/piotr/src/sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/piotr/src/sse.hpp -------------------------------------------------------------------------------- /src/3rdparty/piotr/src/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/piotr/src/wrappers.hpp -------------------------------------------------------------------------------- /src/3rdparty/tclap/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/AUTHORS -------------------------------------------------------------------------------- /src/3rdparty/tclap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/COPYING -------------------------------------------------------------------------------- /src/3rdparty/tclap/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/ChangeLog -------------------------------------------------------------------------------- /src/3rdparty/tclap/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/INSTALL -------------------------------------------------------------------------------- /src/3rdparty/tclap/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = tclap 2 | -------------------------------------------------------------------------------- /src/3rdparty/tclap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/Makefile.in -------------------------------------------------------------------------------- /src/3rdparty/tclap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/README -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/Arg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/ArgException.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/ArgTraits.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/CmdLine.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/Constraint.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/Makefile.am -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/Makefile.in -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/MultiArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/StandardTraits.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/StdOutput.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/SwitchArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/ValueArg.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/Visitor.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/XorHandler.h -------------------------------------------------------------------------------- /src/3rdparty/tclap/tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/3rdparty/tclap/tclap/ZshCompletionOutput.h -------------------------------------------------------------------------------- /src/cf_libs/common/cf_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/cf_tracker.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/cv_ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/cv_ext.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/feature_channels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/feature_channels.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/mat_consts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/mat_consts.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/math_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/math_helper.cpp -------------------------------------------------------------------------------- /src/cf_libs/common/math_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/math_helper.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/scale_estimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/scale_estimator.hpp -------------------------------------------------------------------------------- /src/cf_libs/common/tracker_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/common/tracker_debug.hpp -------------------------------------------------------------------------------- /src/cf_libs/dsst/dsst_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/dsst/dsst_debug.hpp -------------------------------------------------------------------------------- /src/cf_libs/dsst/dsst_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/dsst/dsst_tracker.hpp -------------------------------------------------------------------------------- /src/cf_libs/kcf/kcf_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/kcf/kcf_debug.hpp -------------------------------------------------------------------------------- /src/cf_libs/kcf/kcf_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/cf_libs/kcf/kcf_tracker.hpp -------------------------------------------------------------------------------- /src/main/image_acquisition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/main/image_acquisition.cpp -------------------------------------------------------------------------------- /src/main/image_acquisition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/main/image_acquisition.hpp -------------------------------------------------------------------------------- /src/main/main_dsst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/main/main_dsst.cpp -------------------------------------------------------------------------------- /src/main/main_kcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klahaag/cf_tracking/HEAD/src/main/main_kcf.cpp --------------------------------------------------------------------------------