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
Constant methods for crate::ximgproc::AdaptiveManifoldFilter
Required Methods§
fn as_raw_AdaptiveManifoldFilter(&self) -> *const c_void
Provided Methods§
Sourcefn get_sigma_s(&self) -> Result<f64>
fn get_sigma_s(&self) -> Result<f64>
§See also
setSigmaS
Sourcefn get_sigma_r(&self) -> Result<f64>
fn get_sigma_r(&self) -> Result<f64>
§See also
setSigmaR
Sourcefn get_tree_height(&self) -> Result<i32>
fn get_tree_height(&self) -> Result<i32>
§See also
setTreeHeight
Sourcefn get_pca_iterations(&self) -> Result<i32>
fn get_pca_iterations(&self) -> Result<i32>
§See also
setPCAIterations
Sourcefn get_adjust_outliers(&self) -> Result<bool>
fn get_adjust_outliers(&self) -> Result<bool>
§See also
setAdjustOutliers
Sourcefn get_use_rng(&self) -> Result<bool>
fn get_use_rng(&self) -> Result<bool>
§See also
setUseRNG
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.