pub trait MSDDetectorTraitConst: Feature2DTraitConst {
// Required method
fn as_raw_MSDDetector(&self) -> *const c_void;
// Provided methods
fn get_patch_radius(&self) -> Result<i32> { ... }
fn get_search_area_radius(&self) -> Result<i32> { ... }
fn get_nms_radius(&self) -> Result<i32> { ... }
fn get_nms_scale_radius(&self) -> Result<i32> { ... }
fn get_th_saliency(&self) -> Result<f32> { ... }
fn get_knn(&self) -> Result<i32> { ... }
fn get_scale_factor(&self) -> Result<f32> { ... }
fn get_n_scales(&self) -> Result<i32> { ... }
fn get_compute_orientation(&self) -> Result<bool> { ... }
fn get_default_name(&self) -> Result<String> { ... }
}
Expand description
Constant methods for crate::xfeatures2d::MSDDetector
Required Methods§
fn as_raw_MSDDetector(&self) -> *const c_void
Provided Methods§
fn get_patch_radius(&self) -> Result<i32>
fn get_search_area_radius(&self) -> Result<i32>
fn get_nms_radius(&self) -> Result<i32>
fn get_nms_scale_radius(&self) -> Result<i32>
fn get_th_saliency(&self) -> Result<f32>
fn get_knn(&self) -> Result<i32>
fn get_scale_factor(&self) -> Result<f32>
fn get_n_scales(&self) -> Result<i32>
fn get_compute_orientation(&self) -> Result<bool>
fn get_default_name(&self) -> Result<String>
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.