├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── create_project_studio2010.bat ├── create_project_xcode.sh ├── image.png └── src ├── CMakeLists.txt ├── example ├── CMakeLists.txt ├── example_simple.cpp └── example_video.cpp ├── icp-opencv ├── CMakeLists.txt ├── icp.c └── icp.h └── third_party ├── CMakeLists.txt └── kdtree ├── CMakeLists.txt ├── kdtree.c └── kdtree.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | xcode_project/* 4 | vstudio2010/* 5 | src/example/CMakeLists.txt.rej 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/README.md -------------------------------------------------------------------------------- /create_project_studio2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/create_project_studio2010.bat -------------------------------------------------------------------------------- /create_project_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/create_project_xcode.sh -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/image.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/example/CMakeLists.txt -------------------------------------------------------------------------------- /src/example/example_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/example/example_simple.cpp -------------------------------------------------------------------------------- /src/example/example_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/example/example_video.cpp -------------------------------------------------------------------------------- /src/icp-opencv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/icp-opencv/CMakeLists.txt -------------------------------------------------------------------------------- /src/icp-opencv/icp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/icp-opencv/icp.c -------------------------------------------------------------------------------- /src/icp-opencv/icp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/icp-opencv/icp.h -------------------------------------------------------------------------------- /src/third_party/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(kdtree) 3 | -------------------------------------------------------------------------------- /src/third_party/kdtree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/third_party/kdtree/CMakeLists.txt -------------------------------------------------------------------------------- /src/third_party/kdtree/kdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/third_party/kdtree/kdtree.c -------------------------------------------------------------------------------- /src/third_party/kdtree/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/icp-opencv/HEAD/src/third_party/kdtree/kdtree.h --------------------------------------------------------------------------------