├── .DS_Store ├── CMakeLists.txt ├── README.md ├── include └── fast_pcl │ └── ndt_gpu │ ├── Matrix.h │ ├── MatrixDevice.h │ ├── MatrixHost.h │ ├── NormalDistributionsTransform.h │ ├── Registration.h │ ├── SymmetricEigenSolver.h │ ├── VoxelGrid.h │ ├── common.h │ └── debug.h ├── package.xml └── src ├── MatrixDevice.cu ├── MatrixHost.cu ├── NormalDistributionsTransform.cu ├── Registration.cu ├── SymmetricEigenSolver.cu ├── VoxelGrid.cu └── test_node.cpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/.DS_Store -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/README.md -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/Matrix.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/MatrixDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/MatrixDevice.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/MatrixHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/MatrixHost.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/NormalDistributionsTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/NormalDistributionsTransform.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/Registration.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/SymmetricEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/SymmetricEigenSolver.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/VoxelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/VoxelGrid.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/common.h -------------------------------------------------------------------------------- /include/fast_pcl/ndt_gpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/include/fast_pcl/ndt_gpu/debug.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/package.xml -------------------------------------------------------------------------------- /src/MatrixDevice.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/MatrixDevice.cu -------------------------------------------------------------------------------- /src/MatrixHost.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/MatrixHost.cu -------------------------------------------------------------------------------- /src/NormalDistributionsTransform.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/NormalDistributionsTransform.cu -------------------------------------------------------------------------------- /src/Registration.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/Registration.cu -------------------------------------------------------------------------------- /src/SymmetricEigenSolver.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/SymmetricEigenSolver.cu -------------------------------------------------------------------------------- /src/VoxelGrid.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/VoxelGrid.cu -------------------------------------------------------------------------------- /src/test_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einsnull/ndt_gpu/HEAD/src/test_node.cpp --------------------------------------------------------------------------------