[][src]Struct kd_tree::KdIndexTreeN

pub struct KdIndexTreeN<'a, T, N: Unsigned> { /* fields omitted */ }

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

impl<'a, T, N: Unsigned> KdIndexTreeN<'a, T, N>[src]

pub fn source(&self) -> &'a [T][src]

pub fn indices(&self) -> &KdSliceN<usize, N>[src]

pub fn item(&self, i: usize) -> &'a T[src]

pub fn build_by<F>(source: &'a [T], compare: F) -> Self where
    F: Fn(&T, &T, usize) -> Ordering + Copy
[src]

pub fn build_by_key<Key, F>(source: &'a [T], kd_key: F) -> Self where
    Key: Ord,
    F: Fn(&T, usize) -> Key + Copy
[src]

pub fn build_by_ordered_float(points: &'a [T]) -> Self where
    T: KdPoint<Dim = N>,
    T::Scalar: Float
[src]

pub fn build(points: &'a [T]) -> Self where
    T: KdPoint<Dim = N>,
    T::Scalar: Ord
[src]

pub fn nearest_by<Q: KdPoint<Dim = N>>(
    &self,
    query: &Q,
    coord: impl Fn(&T, usize) -> Q::Scalar + Copy
) -> Option<ItemAndDistance<'_, usize, Q::Scalar>>
[src]

pub fn nearest(
    &self,
    query: &impl KdPoint<Scalar = T::Scalar, Dim = N>
) -> Option<ItemAndDistance<'_, usize, T::Scalar>> where
    T: KdPoint<Dim = N>, 
[src]

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>>
[src]

pub fn nearests(
    &self,
    query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
    num: usize
) -> Vec<ItemAndDistance<'_, usize, T::Scalar>> where
    T: KdPoint<Dim = N>, 
[src]

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>
[src]

pub fn within_by<Q: KdPoint<Dim = N>>(
    &self,
    query: &[Q; 2],
    coord: impl Fn(&T, usize) -> Q::Scalar + Copy
) -> Vec<&usize>
[src]

pub fn within(
    &self,
    query: &[impl KdPoint<Scalar = T::Scalar, Dim = N>; 2]
) -> Vec<&usize> where
    T: KdPoint<Dim = N>, 
[src]

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>
[src]

pub fn within_radius(
    &self,
    query: &impl KdPoint<Scalar = T::Scalar, Dim = N>,
    radius: T::Scalar
) -> Vec<&usize> where
    T: KdPoint<Dim = N>, 
[src]

Trait Implementations

impl<'a, T: Clone, N: Clone + Unsigned> Clone for KdIndexTreeN<'a, T, N>[src]

impl<'a, T: Debug, N: Debug + Unsigned> Debug for KdIndexTreeN<'a, T, N>[src]

impl<'a, T: Eq, N: Eq + Unsigned> Eq for KdIndexTreeN<'a, T, N>[src]

impl<'a, T: PartialEq, N: PartialEq + Unsigned> PartialEq<KdIndexTreeN<'a, T, N>> for KdIndexTreeN<'a, T, N>[src]

impl<'a, T, N: Unsigned> StructuralEq for KdIndexTreeN<'a, T, N>[src]

impl<'a, T, N: Unsigned> StructuralPartialEq for KdIndexTreeN<'a, T, N>[src]

Auto Trait Implementations

impl<'a, T, N> RefUnwindSafe for KdIndexTreeN<'a, T, N> where
    N: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, N> Send for KdIndexTreeN<'a, T, N> where
    N: Send,
    T: Sync

impl<'a, T, N> Sync for KdIndexTreeN<'a, T, N> where
    N: Sync,
    T: Sync

impl<'a, T, N> Unpin for KdIndexTreeN<'a, T, N> where
    N: Unpin

impl<'a, T, N> UnwindSafe for KdIndexTreeN<'a, T, N> where
    N: UnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.