Skip to content

Commit 862d7d9

Browse files
committed
Introduction.
1 parent 670ce85 commit 862d7d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.11)
55
project(pico_tree
66
LANGUAGES CXX
77
VERSION 0.4.0
8-
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."
99
HOMEPAGE_URL "https://github.com/Jaybro/pico_tree")
1010

1111
if (NOT CMAKE_BUILD_TYPE)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![build-and-test](https://github.com/Jaybro/pico_tree/workflows/build-and-test/badge.svg)](https://github.com/Jaybro/pico_tree/actions?query=workflow%3Abuild-and-test)
44

5-
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.
66

77
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.
88

@@ -19,7 +19,7 @@ Available under the [MIT](https://en.wikipedia.org/wiki/MIT_License) license.
1919
The examples show how PicoTree can be used:
2020

2121
* 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).
2323
* Using [Eigen](./examples/eigen/) data types.
2424

2525
# Requirements

0 commit comments

Comments
 (0)