Struct nabo::Parameters[][src]

pub struct Parameters<T: Scalar> {
    pub epsilon: T,
    pub max_radius: T,
    pub allow_self_match: bool,
    pub sort_results: bool,
}
Expand description

Advanced search parameters

Fields

epsilon: T

maximal ratio of error for approximate search, 0 for exact search; has no effect if the number of neighbours found is smaller than the number requested

max_radius: T

maximum radius in which to search, can be used to prune search, is not affected by epsilon

allow_self_match: bool

allows the return of the same point as the query, if this point is in the point cloud

sort_results: bool

sort points by distances, when k > 1

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.