#nearest-neighbor #search-algorithms #knn #ball-tree #vantage-point

petal-neighbors

Nearest neighbor search algorithms including a ball tree and a vantage point tree

13 releases (breaking)

0.10.0 Dec 20, 2023
0.9.0 Aug 7, 2023
0.8.0 Apr 19, 2022
0.7.1 Jul 7, 2021
0.1.0 Nov 21, 2019

#177 in Algorithms

Download history 2/week @ 2023-12-22 6/week @ 2023-12-29 20/week @ 2024-01-05 13/week @ 2024-01-19 1/week @ 2024-01-26 77/week @ 2024-02-02 162/week @ 2024-02-09 201/week @ 2024-02-16 214/week @ 2024-02-23 124/week @ 2024-03-01 113/week @ 2024-03-08 111/week @ 2024-03-15 199/week @ 2024-03-22 357/week @ 2024-03-29 674/week @ 2024-04-05

1,352 downloads per month
Used in 4 crates (3 directly)

Apache-2.0

42KB
973 lines

petal-neighbors

Nearest neighbor search algorithms including a ball tree and a vantage point tree.

crates.io Documentation Coverage Status

Examples

The following example shows how to find two nearest neighbors in a ball tree.

use ndarray::{array, aview1};
use petal_neighbors::BallTree;

let points = array![[1., 1.], [1., 2.], [9., 9.]];
let tree = BallTree::euclidean(points).unwrap();
let (indices, distances) = tree.query(&aview1(&[3., 3.]), 2);
assert_eq!(indices, &[1, 0]);  // points[1] is the nearest, points[0] the next.

License

Copyright 2019-2023 Petabi, Inc.

Licensed under Apache License, Version 2.0 (the "License"); you may not use this crate except in compliance with the License.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See LICENSE for the specific language governing permissions and limitations under the License.

Contribution

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

Dependencies

~2MB
~45K SLoC