pub struct KdIndexTreeN<'a, T, N: Unsigned> { /* private fields */ }
Expand description
This type refers a slice of items, [T]
, and contains kd-tree of indices to the items, KdTree<usize, N>
.
Unlike KdSliceN::sort
, KdIndexTreeN::build
doesn’t sort input items.
let items = vec![[1, 2, 3], [3, 1, 2], [2, 3, 1]];
let kdtree = kd_tree::KdIndexTree::build(&items);
assert_eq!(kdtree.nearest(&[3, 1, 2]).unwrap().item, &1); // nearest() returns an index of items.
Implementations§
Source§impl<'a, T, N: Unsigned> KdIndexTreeN<'a, T, N>
impl<'a, T, N: Unsigned> KdIndexTreeN<'a, T, N>
pub fn source(&self) -> &'a [T]
pub fn indices(&self) -> &KdSliceN<usize, N>
pub fn item(&self, i: usize) -> &'a T
pub fn build_by<F>(source: &'a [T], compare: F) -> Self
pub fn build_by_key<Key, F>(source: &'a [T], kd_key: F) -> Self
pub fn build_by_ordered_float(points: &'a [T]) -> Self
pub fn build(points: &'a [T]) -> Self
pub fn nearest_by<Q: KdPoint<Dim = N>>( &self, query: &Q, coord: impl Fn(&T, usize) -> Q::Scalar + Copy, ) -> Option<ItemAndDistance<'_, usize, Q::Scalar>>
Sourcepub fn nearest(
&self,
query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
) -> Option<ItemAndDistance<'_, usize, T::Scalar>>where
T: KdPoint<Dim = N>,
pub fn nearest(
&self,
query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
) -> Option<ItemAndDistance<'_, usize, T::Scalar>>where
T: KdPoint<Dim = N>,
§Example
let mut items: Vec<[i32; 3]> = vec![[1, 2, 3], [3, 1, 2], [2, 3, 1]];
let kdtree = kd_tree::KdIndexTree3::build(&items);
assert_eq!(kdtree.nearest(&[3, 1, 2]).unwrap().item, &1);
pub fn nearests_by<Q: KdPoint<Dim = N>>( &self, query: &Q, num: usize, coord: impl Fn(&T, usize) -> Q::Scalar + Copy, ) -> Vec<ItemAndDistance<'_, usize, Q::Scalar>>
Sourcepub fn nearests(
&self,
query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
num: usize,
) -> Vec<ItemAndDistance<'_, usize, T::Scalar>>where
T: KdPoint<Dim = N>,
pub fn nearests(
&self,
query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
num: usize,
) -> Vec<ItemAndDistance<'_, usize, T::Scalar>>where
T: KdPoint<Dim = N>,
Returns kNN(k nearest neighbors) from the input point.
§Example
let mut items: Vec<[i32; 3]> = vec![[1, 2, 3], [3, 1, 2], [2, 3, 1], [3, 2, 2]];
let kdtree = kd_tree::KdIndexTree::build(&mut items);
let nearests = kdtree.nearests(&[3, 1, 2], 2);
assert_eq!(nearests.len(), 2);
assert_eq!(nearests[0].item, &1);
assert_eq!(nearests[1].item, &3);
pub fn within_by_cmp( &self, compare: impl Fn(&T, usize) -> Ordering + Copy, ) -> Vec<&usize>
pub fn within_by<Q: KdPoint<Dim = N>>( &self, query: &[Q; 2], coord: impl Fn(&T, usize) -> Q::Scalar + Copy, ) -> Vec<&usize>
pub fn within(
&self,
query: &[impl KdPoint<Scalar = T::Scalar, Dim = N>; 2],
) -> Vec<&usize>where
T: KdPoint<Dim = N>,
pub fn within_radius_by<Q: KdPoint<Dim = N>>( &self, query: &Q, radius: Q::Scalar, coord: impl Fn(&T, usize) -> Q::Scalar + Copy, ) -> Vec<&usize>
pub fn within_radius(
&self,
query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
radius: T::Scalar,
) -> Vec<&usize>where
T: KdPoint<Dim = N>,
Trait Implementations§
Source§impl<'a, T: Clone, N: Clone + Unsigned> Clone for KdIndexTreeN<'a, T, N>
impl<'a, T: Clone, N: Clone + Unsigned> Clone for KdIndexTreeN<'a, T, N>
Source§fn clone(&self) -> KdIndexTreeN<'a, T, N>
fn clone(&self) -> KdIndexTreeN<'a, T, N>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<'a, T: Eq, N: Eq + Unsigned> Eq for KdIndexTreeN<'a, T, N>
impl<'a, T, N: Unsigned> StructuralPartialEq for KdIndexTreeN<'a, T, N>
Auto Trait Implementations§
impl<'a, T, N> Freeze for KdIndexTreeN<'a, T, N>
impl<'a, T, N> RefUnwindSafe for KdIndexTreeN<'a, T, N>where
T: RefUnwindSafe,
N: RefUnwindSafe,
impl<'a, T, N> Send for KdIndexTreeN<'a, T, N>
impl<'a, T, N> Sync for KdIndexTreeN<'a, T, N>
impl<'a, T, N> Unpin for KdIndexTreeN<'a, T, N>where
N: Unpin,
impl<'a, T, N> UnwindSafe for KdIndexTreeN<'a, T, N>where
T: RefUnwindSafe,
N: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more