Name Last commit message Last commit date Latest commit crvs Fix neighborhood_points and neighborhood_indices Aug 20, 2024 0c15700·Aug 20, 2024 History 49 Commits .github/workflows Create cmake-single-platform.yml May 10, 2024 tests
A simple C library for working with KD-Trees. Contribute to jtsiomb/kdtree development by creating an account on GitHub.
#include <cmath>KdTree::KdTree() : root(nullptr) {};// Build tree from root void KdTree::buildTree(vector<Point> &points) { root = buildTreeRecursive(points, 0); }// Retrieves the k nearest neighbors; returns them in order from nearest to farthest vector<Point> KdTree::kNeares...
GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
A simple C library for working with KD-Trees. Contribute to reinforcementdriving/kdtree development by creating an account on GitHub.
A simple C library for working with KD-Trees. Contribute to jtsiomb/kdtree development by creating an account on GitHub.
The original C version is available at google code and the specific version this was derived from is available at github under the git tag 'original'.The C++ side of this is simply to shore up type casting so it builds with a C++ compiler.License...
A simple C library for working with KD-Trees. Contribute to jtsiomb/kdtree development by creating an account on GitHub.
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
CMake Build Instruction Clone the repository and fetch the submodule pybind11: git clone https://github.com/thomgrand/torch_kdtree cd torch_kdtree git submodule init git submodule update The easiest way of installing the library is using setuptools: pip install . Tests After installation, you ...