nanoflann icon indicating copy to clipboard operation
nanoflann copied to clipboard

nanoflann: a C++11 header-only library for Nearest Neighbor (NN) search with KD-trees

Results 51 nanoflann issues
Sort by recently updated
recently updated
newest added

Hi thanks for the great work. I encountered a potential bug within the lib. I want to filter my point cloud based on how many Neighbors a point has. For...

There are two types of NNS query: the k-NN search and the fixed radius search. The combination of the two types yields the ranged search, i.e. the retrieval of the...

I tried to add the removed index at https://github.com/jlblancoc/nanoflann/blob/4c47ca200209550c5628c89803591f8a753c8181/examples/dynamic_pointcloud_example.cpp#L69-L70 by adding the following code: ```c++ cloud.pts[N-1] = { 0.5, 0.5, 0.5 }; cout

bug

Would it be possible to replace the `m_indices_dists` container within `RadiusResultSet` of type `std::vector` with something that interoperates better with C? Currently, any attempt to use nanoflann from a language...

enhancement

I'm using findNeighbors via PDAL filters.icp, and the general algorithm is (pseudocode): ``` # Given two point clouds A and B iterations = 100 # customizable kdtree = KDTree(A) for...

Hey thanks for the great project! I am wondering if there is any easy way (or forked project) to enable parallelism for KD-Tree construction with nanoflann? Or do you have...

Hi, I wanted to know if there is a way to incrementally add points to the kd-tree, like say one at a time. What I basically want to achieve is...

I have a set of orientations and need to find all orientations in a radius. In my case, the radius is the smallest delta orientation around any axis (equivalent to...

I try to use nanoflann in CloudCompare to create a plugin. an error happens! But I compile nanoflann successfully! Can you give me some advice?

The removePoint() function is Lazy Deletion, and the point is not really removed. Is there a function that can remove all the points in the KDtree?