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
Currently, nodes are stored to std::vector, and the NN and NBHD search are implemented by linear search.
In high dimensional space, to solve effectively above problems, kd-tree is suitable data structure. https://ieeexplore.ieee.org/document/4084578
The text was updated successfully, but these errors were encountered:
Currently, nodes are stored to std::vector, and the NN and NBHD search are implemented by linear search.
In high dimensional space, to solve effectively above problems, kd-tree is suitable data structure.
https://ieeexplore.ieee.org/document/4084578
The text was updated successfully, but these errors were encountered: