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
DESCRIPTION "PicoTree is a small C++ header only library that provides several data structures that can be used for range searches and nearest neighbor searches."
8
+
DESCRIPTION "PicoTree is a small C++ header only library that provides a KdTree that can be used for range searches and nearest neighbor searches."
PicoTree is a small C++ header only library that provides several data structures that can be used for range searches and nearest neighbor searches.
5
+
PicoTree is a small C++ header only library that provides a KdTree that can be used for range searches and nearest neighbor searches.
6
6
7
7
See the comparison [benchmark](./docs/benchmark.md) between PicoTree and [nanoflann](https://github.com/jlblancoc/nanoflann) to get an impression of the performance provided by the [KdTree](https://en.wikipedia.org/wiki/K-d_tree) of this library.
8
8
@@ -19,7 +19,7 @@ Available under the [MIT](https://en.wikipedia.org/wiki/MIT_License) license.
19
19
The examples show how PicoTree can be used:
20
20
21
21
* Creating an [adaptor](./examples/pico_common/pico_adaptor.hpp) to interface with input point clouds.
22
-
* Searching using the [Kdtree](./examples/kd_tree/kd_tree.cpp) and creating a custom search visitor (for finding approximate nearest neighbors).
22
+
* Searching using the [KdTree](./examples/kd_tree/kd_tree.cpp) and creating a custom search visitor (for finding approximate nearest neighbors).
0 commit comments