├── Demos ├── DEMOOneLeaveShop1front.mpeg ├── DEMOOneLeaveShop2front.mpeg ├── DEMOOneLeaveShopReenter2front.mpeg ├── DEMOOneStopNoEnter2front.mpeg └── DEMOWalkByShop1front.mpeg ├── Documentation ├── Cover │ ├── cover.aux │ ├── cover.log │ ├── cover.pdf │ ├── cover.synctex.gz │ ├── cover.tex │ └── lith_sigill_col.jpg ├── Object_Tracking_report.tex ├── TSBB15prez.pptx ├── code_files │ ├── frame.cpp │ ├── frame.h │ ├── object.cpp │ └── object.h ├── images │ ├── Kalmask2.png │ ├── SequenceEvaluation.png │ ├── ShadowRenova0000.png │ ├── ShadowRenova0002.png │ ├── Untitled-1.png │ ├── acatisfinetoo.jpg │ ├── data_flow.png │ ├── data_flow_identification.graphml │ ├── data_flow_identification.png │ ├── data_flow_preprocessing.png │ ├── data_structures_uml.graphml │ ├── data_structures_uml.png │ ├── occlusionIllustration1.png │ └── occlusionIllustration1_full.png ├── text_files │ ├── background_modeling.tex │ ├── bibliography.tex │ ├── conclusions.tex │ ├── data_structures.tex │ ├── foreground_segmentation.tex │ ├── identity.tex │ ├── introduction.tex │ ├── kalman_prediction.tex │ ├── main_program.tex │ ├── object_identification.tex │ ├── occlusion_handling.tex │ ├── results.tex │ ├── shadow_handling.tex │ ├── system_description.tex │ └── system_evaluation.tex └── trackingDemoMallFirst.mpeg ├── Experiment - Identification └── main.cpp ├── Libs └── rapidxml.hpp ├── Modules ├── BackgroundModelling │ ├── BackgroundModel.cpp │ ├── BackgroundModel.h │ ├── PixelModel.cpp │ ├── PixelModel.h │ ├── ProbabilityMap.cpp │ ├── ProbabilityMap.h │ └── texput.log ├── BackgroundModelling_simple │ ├── BackgroundModel_simple.cpp │ └── BackgroundModel_simple.h ├── Evaluation │ ├── Evaluation.cpp │ └── Evaluation.h ├── ForegroundProcessing │ ├── ForegroundProcessor.cpp │ └── ForegroundProcessor.h ├── Frame.cpp ├── Frame.h ├── FrameList.cpp ├── FrameList.h ├── ImageConverting │ └── Image2movie.cpp ├── Object.cpp ├── Object.h ├── ObjectIdentification │ ├── Identification - Copy.cpp │ ├── Identification - Copy.h │ ├── Identification.cpp │ └── Identification.h ├── Prediction │ ├── Kalman.cpp │ ├── Kalman.h │ ├── StateSpaceModel.cpp │ └── StateSpaceModel.h └── Profiler.h ├── README.md ├── _.swp ├── authors.txt ├── experiment ├── CMakeLists.txt ├── ForegroundProcessor.cpp ├── ForegroundProcessor.h ├── Frame.cpp ├── Frame.h ├── FrameList.cpp ├── FrameList.h ├── ProbabilityMap.cpp ├── ProbabilityMap.h ├── frame1.png ├── frame2.png ├── logo.png └── main.cpp └── tracking.cpp /Demos/DEMOOneLeaveShop1front.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Demos/DEMOOneLeaveShop1front.mpeg -------------------------------------------------------------------------------- /Demos/DEMOOneLeaveShop2front.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Demos/DEMOOneLeaveShop2front.mpeg -------------------------------------------------------------------------------- /Demos/DEMOOneLeaveShopReenter2front.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Demos/DEMOOneLeaveShopReenter2front.mpeg -------------------------------------------------------------------------------- /Demos/DEMOOneStopNoEnter2front.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Demos/DEMOOneStopNoEnter2front.mpeg -------------------------------------------------------------------------------- /Demos/DEMOWalkByShop1front.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Demos/DEMOWalkByShop1front.mpeg -------------------------------------------------------------------------------- /Documentation/Cover/cover.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /Documentation/Cover/cover.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Cover/cover.log -------------------------------------------------------------------------------- /Documentation/Cover/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Cover/cover.pdf -------------------------------------------------------------------------------- /Documentation/Cover/cover.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Cover/cover.synctex.gz -------------------------------------------------------------------------------- /Documentation/Cover/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Cover/cover.tex -------------------------------------------------------------------------------- /Documentation/Cover/lith_sigill_col.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Cover/lith_sigill_col.jpg -------------------------------------------------------------------------------- /Documentation/Object_Tracking_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/Object_Tracking_report.tex -------------------------------------------------------------------------------- /Documentation/TSBB15prez.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/TSBB15prez.pptx -------------------------------------------------------------------------------- /Documentation/code_files/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/code_files/frame.cpp -------------------------------------------------------------------------------- /Documentation/code_files/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/code_files/frame.h -------------------------------------------------------------------------------- /Documentation/code_files/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/code_files/object.cpp -------------------------------------------------------------------------------- /Documentation/code_files/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/code_files/object.h -------------------------------------------------------------------------------- /Documentation/images/Kalmask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/Kalmask2.png -------------------------------------------------------------------------------- /Documentation/images/SequenceEvaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/SequenceEvaluation.png -------------------------------------------------------------------------------- /Documentation/images/ShadowRenova0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/ShadowRenova0000.png -------------------------------------------------------------------------------- /Documentation/images/ShadowRenova0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/ShadowRenova0002.png -------------------------------------------------------------------------------- /Documentation/images/Untitled-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/Untitled-1.png -------------------------------------------------------------------------------- /Documentation/images/acatisfinetoo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/acatisfinetoo.jpg -------------------------------------------------------------------------------- /Documentation/images/data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_flow.png -------------------------------------------------------------------------------- /Documentation/images/data_flow_identification.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_flow_identification.graphml -------------------------------------------------------------------------------- /Documentation/images/data_flow_identification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_flow_identification.png -------------------------------------------------------------------------------- /Documentation/images/data_flow_preprocessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_flow_preprocessing.png -------------------------------------------------------------------------------- /Documentation/images/data_structures_uml.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_structures_uml.graphml -------------------------------------------------------------------------------- /Documentation/images/data_structures_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/data_structures_uml.png -------------------------------------------------------------------------------- /Documentation/images/occlusionIllustration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/occlusionIllustration1.png -------------------------------------------------------------------------------- /Documentation/images/occlusionIllustration1_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/images/occlusionIllustration1_full.png -------------------------------------------------------------------------------- /Documentation/text_files/background_modeling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/background_modeling.tex -------------------------------------------------------------------------------- /Documentation/text_files/bibliography.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/bibliography.tex -------------------------------------------------------------------------------- /Documentation/text_files/conclusions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/conclusions.tex -------------------------------------------------------------------------------- /Documentation/text_files/data_structures.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/data_structures.tex -------------------------------------------------------------------------------- /Documentation/text_files/foreground_segmentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/foreground_segmentation.tex -------------------------------------------------------------------------------- /Documentation/text_files/identity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/identity.tex -------------------------------------------------------------------------------- /Documentation/text_files/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/introduction.tex -------------------------------------------------------------------------------- /Documentation/text_files/kalman_prediction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/kalman_prediction.tex -------------------------------------------------------------------------------- /Documentation/text_files/main_program.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/main_program.tex -------------------------------------------------------------------------------- /Documentation/text_files/object_identification.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/object_identification.tex -------------------------------------------------------------------------------- /Documentation/text_files/occlusion_handling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/occlusion_handling.tex -------------------------------------------------------------------------------- /Documentation/text_files/results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/results.tex -------------------------------------------------------------------------------- /Documentation/text_files/shadow_handling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/shadow_handling.tex -------------------------------------------------------------------------------- /Documentation/text_files/system_description.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/system_description.tex -------------------------------------------------------------------------------- /Documentation/text_files/system_evaluation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/text_files/system_evaluation.tex -------------------------------------------------------------------------------- /Documentation/trackingDemoMallFirst.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Documentation/trackingDemoMallFirst.mpeg -------------------------------------------------------------------------------- /Experiment - Identification/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Experiment - Identification/main.cpp -------------------------------------------------------------------------------- /Libs/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Libs/rapidxml.hpp -------------------------------------------------------------------------------- /Modules/BackgroundModelling/BackgroundModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/BackgroundModel.cpp -------------------------------------------------------------------------------- /Modules/BackgroundModelling/BackgroundModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/BackgroundModel.h -------------------------------------------------------------------------------- /Modules/BackgroundModelling/PixelModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/PixelModel.cpp -------------------------------------------------------------------------------- /Modules/BackgroundModelling/PixelModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/PixelModel.h -------------------------------------------------------------------------------- /Modules/BackgroundModelling/ProbabilityMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/ProbabilityMap.cpp -------------------------------------------------------------------------------- /Modules/BackgroundModelling/ProbabilityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/ProbabilityMap.h -------------------------------------------------------------------------------- /Modules/BackgroundModelling/texput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling/texput.log -------------------------------------------------------------------------------- /Modules/BackgroundModelling_simple/BackgroundModel_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling_simple/BackgroundModel_simple.cpp -------------------------------------------------------------------------------- /Modules/BackgroundModelling_simple/BackgroundModel_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/BackgroundModelling_simple/BackgroundModel_simple.h -------------------------------------------------------------------------------- /Modules/Evaluation/Evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Evaluation/Evaluation.cpp -------------------------------------------------------------------------------- /Modules/Evaluation/Evaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Evaluation/Evaluation.h -------------------------------------------------------------------------------- /Modules/ForegroundProcessing/ForegroundProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ForegroundProcessing/ForegroundProcessor.cpp -------------------------------------------------------------------------------- /Modules/ForegroundProcessing/ForegroundProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ForegroundProcessing/ForegroundProcessor.h -------------------------------------------------------------------------------- /Modules/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Frame.cpp -------------------------------------------------------------------------------- /Modules/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Frame.h -------------------------------------------------------------------------------- /Modules/FrameList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/FrameList.cpp -------------------------------------------------------------------------------- /Modules/FrameList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/FrameList.h -------------------------------------------------------------------------------- /Modules/ImageConverting/Image2movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ImageConverting/Image2movie.cpp -------------------------------------------------------------------------------- /Modules/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Object.cpp -------------------------------------------------------------------------------- /Modules/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Object.h -------------------------------------------------------------------------------- /Modules/ObjectIdentification/Identification - Copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ObjectIdentification/Identification - Copy.cpp -------------------------------------------------------------------------------- /Modules/ObjectIdentification/Identification - Copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ObjectIdentification/Identification - Copy.h -------------------------------------------------------------------------------- /Modules/ObjectIdentification/Identification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ObjectIdentification/Identification.cpp -------------------------------------------------------------------------------- /Modules/ObjectIdentification/Identification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/ObjectIdentification/Identification.h -------------------------------------------------------------------------------- /Modules/Prediction/Kalman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Prediction/Kalman.cpp -------------------------------------------------------------------------------- /Modules/Prediction/Kalman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Prediction/Kalman.h -------------------------------------------------------------------------------- /Modules/Prediction/StateSpaceModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Prediction/StateSpaceModel.cpp -------------------------------------------------------------------------------- /Modules/Prediction/StateSpaceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Prediction/StateSpaceModel.h -------------------------------------------------------------------------------- /Modules/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/Modules/Profiler.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/README.md -------------------------------------------------------------------------------- /_.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/_.swp -------------------------------------------------------------------------------- /authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/authors.txt -------------------------------------------------------------------------------- /experiment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/CMakeLists.txt -------------------------------------------------------------------------------- /experiment/ForegroundProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/ForegroundProcessor.cpp -------------------------------------------------------------------------------- /experiment/ForegroundProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/ForegroundProcessor.h -------------------------------------------------------------------------------- /experiment/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/Frame.cpp -------------------------------------------------------------------------------- /experiment/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/Frame.h -------------------------------------------------------------------------------- /experiment/FrameList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/FrameList.cpp -------------------------------------------------------------------------------- /experiment/FrameList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/FrameList.h -------------------------------------------------------------------------------- /experiment/ProbabilityMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/ProbabilityMap.cpp -------------------------------------------------------------------------------- /experiment/ProbabilityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/ProbabilityMap.h -------------------------------------------------------------------------------- /experiment/frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/frame1.png -------------------------------------------------------------------------------- /experiment/frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/frame2.png -------------------------------------------------------------------------------- /experiment/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/logo.png -------------------------------------------------------------------------------- /experiment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/experiment/main.cpp -------------------------------------------------------------------------------- /tracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epipolarna/Tracking/HEAD/tracking.cpp --------------------------------------------------------------------------------