├── .gitattributes ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Results.xlsx ├── images ├── KITTI │ └── 2011_09_26 │ │ └── image_00 │ │ └── data │ │ ├── 0000000000.png │ │ ├── 0000000001.png │ │ ├── 0000000002.png │ │ ├── 0000000003.png │ │ ├── 0000000004.png │ │ ├── 0000000005.png │ │ ├── 0000000006.png │ │ ├── 0000000007.png │ │ ├── 0000000008.png │ │ └── 0000000009.png └── keypoints.png ├── out └── build │ └── x64-Debug │ ├── .cmake │ └── api │ │ └── v1 │ │ └── query │ │ └── client-MicrosoftVS │ │ └── query.json │ ├── CMakeCache.txt │ ├── CMakeFiles │ ├── 3.15.19101501-MSVC_2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeRCCompiler.cmake │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ ├── CMakeCCompilerId.exe │ │ │ └── CMakeCCompilerId.obj │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ ├── CMakeCXXCompilerId.exe │ │ │ └── CMakeCXXCompilerId.obj │ ├── CMakeOutput.log │ ├── ShowIncludes │ │ ├── foo.h │ │ ├── main.c │ │ └── main.obj │ └── cmake.check_cache │ └── VSInheritEnvironments.txt ├── results ├── output-matches.gif └── outputX-matches.gif └── src ├── MidTermProject_Camera_Student.cpp ├── dataStructures.h ├── matching2D.hpp └── matching2D_Student.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/.gitattributes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/README.md -------------------------------------------------------------------------------- /Results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/Results.xlsx -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000000.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000001.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000002.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000003.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000004.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000005.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000006.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000007.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000008.png -------------------------------------------------------------------------------- /images/KITTI/2011_09_26/image_00/data/0000000009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/KITTI/2011_09_26/image_00/data/0000000009.png -------------------------------------------------------------------------------- /images/keypoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/images/keypoints.png -------------------------------------------------------------------------------- /out/build/x64-Debug/.cmake/api/v1/query/client-MicrosoftVS/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/.cmake/api/v1/query/client-MicrosoftVS/query.json -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeCache.txt -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CMakeSystem.cmake -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.exe -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdC/CMakeCCompilerId.obj -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.exe -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/3.15.19101501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.obj -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/ShowIncludes/foo.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/ShowIncludes/main.c: -------------------------------------------------------------------------------- 1 | #include "foo.h" 2 | int main(){} 3 | -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/ShowIncludes/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/ShowIncludes/main.obj -------------------------------------------------------------------------------- /out/build/x64-Debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /out/build/x64-Debug/VSInheritEnvironments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/out/build/x64-Debug/VSInheritEnvironments.txt -------------------------------------------------------------------------------- /results/output-matches.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/results/output-matches.gif -------------------------------------------------------------------------------- /results/outputX-matches.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/results/outputX-matches.gif -------------------------------------------------------------------------------- /src/MidTermProject_Camera_Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/src/MidTermProject_Camera_Student.cpp -------------------------------------------------------------------------------- /src/dataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/src/dataStructures.h -------------------------------------------------------------------------------- /src/matching2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/src/matching2D.hpp -------------------------------------------------------------------------------- /src/matching2D_Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manankshastri/2D-Feature-Tracking/HEAD/src/matching2D_Student.cpp --------------------------------------------------------------------------------