├── .kdev4 ├── MVG_Agorithm.kdev4 └── MVG_Algorithm.kdev4 ├── CMakeLists.txt ├── MVG_Algorithm.kdev4 ├── README.md ├── include ├── essential_matrix.h ├── fundamental_matrix.h ├── homography_matrix.h ├── line_RANSAC.h └── triangulation.h ├── src ├── essential_matrix.cpp ├── fundamental_matrix.cpp ├── homography_matrix.cpp ├── line_RANSAC.cpp └── triangulation.cpp └── test ├── main.cpp └── test_line_ransac.cpp /.kdev4/MVG_Agorithm.kdev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/.kdev4/MVG_Agorithm.kdev4 -------------------------------------------------------------------------------- /.kdev4/MVG_Algorithm.kdev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/.kdev4/MVG_Algorithm.kdev4 -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /MVG_Algorithm.kdev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/MVG_Algorithm.kdev4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/README.md -------------------------------------------------------------------------------- /include/essential_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/include/essential_matrix.h -------------------------------------------------------------------------------- /include/fundamental_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/include/fundamental_matrix.h -------------------------------------------------------------------------------- /include/homography_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/include/homography_matrix.h -------------------------------------------------------------------------------- /include/line_RANSAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/include/line_RANSAC.h -------------------------------------------------------------------------------- /include/triangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/include/triangulation.h -------------------------------------------------------------------------------- /src/essential_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/src/essential_matrix.cpp -------------------------------------------------------------------------------- /src/fundamental_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/src/fundamental_matrix.cpp -------------------------------------------------------------------------------- /src/homography_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/src/homography_matrix.cpp -------------------------------------------------------------------------------- /src/line_RANSAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/src/line_RANSAC.cpp -------------------------------------------------------------------------------- /src/triangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/src/triangulation.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_line_ransac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydsf16/MVG_Algorithm/HEAD/test/test_line_ransac.cpp --------------------------------------------------------------------------------