nanoflann icon indicating copy to clipboard operation
nanoflann copied to clipboard

Fastest Way to radiusSearch a Vector of Query Points

Open gblikas opened this issue 7 months ago • 0 comments

I have a collection of query points, std::vector<float> queryPoints(2 * sampleSz);, that I'd like to perform a radiusSearch for each of; I want the nearest neighbor or each query point. What is the fastest way to do this?

I've done a simple iteration over each query_pt[2], however with data egress an ingress other algorithms seem to provide an overall faster - from initialization to searching over the whole vector - times.

gblikas avatar Jul 02 '24 21:07 gblikas