pub trait AdaptiveManifoldFilterTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_AdaptiveManifoldFilter(&self) -> *const c_void;

    // Provided methods
    fn get_sigma_s(&self) -> Result<f64> { ... }
    fn get_sigma_r(&self) -> Result<f64> { ... }
    fn get_tree_height(&self) -> Result<i32> { ... }
    fn get_pca_iterations(&self) -> Result<i32> { ... }
    fn get_adjust_outliers(&self) -> Result<bool> { ... }
    fn get_use_rng(&self) -> Result<bool> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn get_sigma_s(&self) -> Result<f64>

See also

setSigmaS

source

fn get_sigma_r(&self) -> Result<f64>

See also

setSigmaR

source

fn get_tree_height(&self) -> Result<i32>

See also

setTreeHeight

source

fn get_pca_iterations(&self) -> Result<i32>

See also

setPCAIterations

source

fn get_adjust_outliers(&self) -> Result<bool>

See also

setAdjustOutliers

source

fn get_use_rng(&self) -> Result<bool>

See also

setUseRNG

Implementors§