4 releases (2 breaking)

0.3.0 Jun 28, 2023
0.2.1 Sep 13, 2021
0.2.0 Sep 6, 2021
0.1.0 Sep 3, 2021

#83 in Multimedia

Download history 16/week @ 2024-01-14 13/week @ 2024-01-28 34/week @ 2024-02-04 63/week @ 2024-02-11 18/week @ 2024-02-18 16/week @ 2024-02-25 3/week @ 2024-03-03 7/week @ 2024-03-10 68/week @ 2024-03-31

75 downloads per month
Used in nblast

MIT/Apache

47KB
917 lines

nabo

Crates.io Docs.rs Build Status

Overview

nabo is a fast K Nearest Neighbour (KNN) library for low-dimensional spaces. It is a re-implementation in pure Rust of the C++ library of the same name by its original author. This work has been sponsored by Enlightware GmbH.

Usage

To use nabo in your project, you need to implement the nabo::Point trait for your point type. You can see an example in src/dummy_point which is available when nabo is compiled with the dummy_point feature (default). If you want to avoid a dependency to rand, disable the dummy_point feature.

Benchmark

You can benchmark nabo using the following command:

cargo bench

Citing nabo

If you use nabo in the academic context, please cite this paper that evaluates its performances in the context of robotics mapping research:

@article{elsebergcomparison,
	title={Comparison of nearest-neighbor-search strategies and implementations for efficient shape registration},
	author={Elseberg, J. and Magnenat, S. and Siegwart, R. and N{\"u}chter, A.},
	journal={Journal of Software Engineering for Robotics (JOSER)},
	pages={2--12},
	volume={3},
	number={1},
	year={2012},
	issn={2035-3928}
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~190–325KB