├── .gitignore ├── Easy.mp4 ├── Medium.mp4 ├── README.md ├── applyGeometricTransformation.py ├── demo ├── affinetransformation.png ├── features.png └── opticalflow.png ├── estimateAllTranslation.py ├── estimateFeatureTranslation.py ├── getFeatures.py ├── hard.mp4 ├── objectTracking.py ├── results ├── easy_result.avi └── medium_result.avi └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | *.pyc -------------------------------------------------------------------------------- /Easy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/Easy.mp4 -------------------------------------------------------------------------------- /Medium.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/Medium.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/README.md -------------------------------------------------------------------------------- /applyGeometricTransformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/applyGeometricTransformation.py -------------------------------------------------------------------------------- /demo/affinetransformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/demo/affinetransformation.png -------------------------------------------------------------------------------- /demo/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/demo/features.png -------------------------------------------------------------------------------- /demo/opticalflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/demo/opticalflow.png -------------------------------------------------------------------------------- /estimateAllTranslation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/estimateAllTranslation.py -------------------------------------------------------------------------------- /estimateFeatureTranslation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/estimateFeatureTranslation.py -------------------------------------------------------------------------------- /getFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/getFeatures.py -------------------------------------------------------------------------------- /hard.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/hard.mp4 -------------------------------------------------------------------------------- /objectTracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/objectTracking.py -------------------------------------------------------------------------------- /results/easy_result.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/results/easy_result.avi -------------------------------------------------------------------------------- /results/medium_result.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/results/medium_result.avi -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheyuanXie/KLT-Feature-Tracking/HEAD/utils.py --------------------------------------------------------------------------------