Skip to content

Commit afbf485

Browse files
committed
Documentation update.
1 parent 45d36dd commit afbf485

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.12)
77
project(pico_tree
88
LANGUAGES CXX
99
VERSION 0.6.0
10-
DESCRIPTION "PicoTree is a C++ header only library with Python bindings for range searches and nearest neighbor searches using a KdTree."
10+
DESCRIPTION "PicoTree is a C++ header only library with Python bindings for nearest neighbor searches and range searches using a KdTree."
1111
HOMEPAGE_URL "https://github.com/Jaybro/pico_tree")
1212

1313
if (NOT CMAKE_BUILD_TYPE)

README.md

Lines changed: 3 additions & 3 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) [![pip](https://github.com/Jaybro/pico_tree/workflows/pip/badge.svg)](https://github.com/Jaybro/pico_tree/actions?query=workflow%3Apip)
44

5-
PicoTree is a C++ header only library with [Python bindings](https://github.com/pybind/pybind11) for range searches and nearest neighbor searches using a KdTree.
5+
PicoTree is a C++ header only library with [Python bindings](https://github.com/pybind/pybind11) for nearest neighbor searches and range searches using a KdTree.
66

77
See the table below to get an impression of the performance provided by the [KdTree](https://en.wikipedia.org/wiki/K-d_tree) of this library versus several other implementations:
88

@@ -12,9 +12,9 @@ See the table below to get an impression of the performance provided by the [KdT
1212
| [SciPy KDTree][sppk] | ... | 117.9s | ... | +inf |
1313
| [SciPy cKDTree][spck] | ... | 9.6s | ... | 14.1s |
1414
| [Scikit-learn KDTree][skck] | ... | 27.1s | ... | 55.4s |
15-
| PicoTree | 2.0s | 2.1s | 3.1s | 4.1s |
15+
| PicoTree KdTree | 2.0s | 2.1s | 3.1s | 4.1s |
1616

17-
The [comparison](./examples/python/kd_tree.py) was generated using 13729039 3d points from a [LiDAR](./docs/benchmark.md) scan, float64, with k = 1 for queries. Note that the Python Knn benchmark does not directly wrap the C++ Knn benchmark, meaning that they can't be compared directly. A more detailed [comparison](./docs/benchmark.md) of PicoTree is available with respect to [nanoflann][nano].
17+
The [comparison](./examples/python/kd_tree.py) was generated using 13729039 3d points from a [LiDAR](./docs/benchmark.md) scan, float64, with k = 1 for queries. Note that the Python Knn benchmark is not a binding on top of the C++ Knn benchmark. This means that they shouldn't be compared directly. A more detailed [comparison](./docs/benchmark.md) of PicoTree is available with respect to [nanoflann][nano].
1818

1919
Available under the [MIT](https://en.wikipedia.org/wiki/MIT_License) license.
2020

src/pico_tree/pico_tree/core.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

3-
//! \mainpage PicoTree is a small C++ header only library for range searches and
4-
//! nearest neighbor searches using a KdTree.
3+
//! \mainpage PicoTree is a C++ header only library for nearest neighbor
4+
//! searches and range searches using a KdTree.
55
//! \file core.hpp
66
//! \brief Contains various common utilities.
77

src/pyco_tree/pico_tree/_pyco_tree/_pyco_tree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
PYBIND11_MODULE(_pyco_tree, m) {
1111
m.doc() =
12-
"PicoTree is a module for range searches and nearest neighbor searches "
12+
"PicoTree is a module for nearest neighbor searches and range searches "
1313
"using a KdTree. It wraps the C++ PicoTree library.";
1414

1515
// Registered dtypes.

0 commit comments

Comments
 (0)