You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
I have a collection of query points,
std::vector<float> queryPoints(2 * sampleSz);
, that I'd like to perform aradiusSearch
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.The text was updated successfully, but these errors were encountered: