[][src]Struct goko::CoverTreeBuilder

pub struct CoverTreeBuilder {
    pub scale_base: f32,
    pub leaf_cutoff: usize,
    pub min_res_index: i32,
    pub use_singletons: bool,
    pub verbosity: u32,
}

A construction object for a covertree.

Fields

scale_base: f32

See paper or main description, governs the number of children of each node. Higher is more.

leaf_cutoff: usize

If a node covers less than or equal to this number of points, it becomes a leaf.

min_res_index: i32

If a node has scale index less than or equal to this, it becomes a leaf

use_singletons: bool

If you don't want singletons messing with your tree and want everything to be a node or a element of leaf node, make this true.

verbosity: u32

Printing verbosity. 2 is the default and gives a progress bar. Still not fully pulled thru the codebase. This should be replaced by a logging solution

Implementations

impl CoverTreeBuilder[src]

pub fn new() -> CoverTreeBuilder[src]

Creates a new builder with sensible defaults.

pub fn from_yaml<P: AsRef<Path>>(path: P) -> Self[src]

Creates a builder from an open yaml object

pub fn set_scale_base(&mut self, x: f32) -> &mut Self[src]

pub fn set_leaf_cutoff(&mut self, x: usize) -> &mut Self[src]

pub fn set_min_res_index(&mut self, x: i32) -> &mut Self[src]

pub fn set_use_singletons(&mut self, x: bool) -> &mut Self[src]

pub fn set_verbosity(&mut self, x: u32) -> &mut Self[src]

pub fn build<D: PointCloud>(
    &self,
    point_cloud: Arc<D>
) -> GokoResult<CoverTreeWriter<D>>
[src]

Pass a point cloud object when ready. To do, make this point cloud an Arc

Trait Implementations

impl Debug for CoverTreeBuilder[src]

impl Default for CoverTreeBuilder[src]

Auto Trait Implementations

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, U> Cast<U> for T where
    U: FromCast<T>, 

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

impl<T> FromCast<T> for T

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,