k nearest neighbor search using kd tree.
Inspired by https://github.com/WiseDoge/libkdtree.git
- C++ implementation of kd tree for knn search
- Points in n dimensional space are given as 2D vectors
- kd tree is fully encapsulated in a unique pointer
git clone https://github.com/shihan-ma/knn-search.git
cd knnsearch
mkdir build
cd build
cmake ..
make
./knnsearch
Licensed under GPL-3.0 License.