Trait StarDetectorTraitConst

Source
pub trait StarDetectorTraitConst: Feature2DTraitConst {
    // Required method
    fn as_raw_StarDetector(&self) -> *const c_void;

    // Provided methods
    fn get_max_size(&self) -> Result<i32> { ... }
    fn get_response_threshold(&self) -> Result<i32> { ... }
    fn get_line_threshold_projected(&self) -> Result<i32> { ... }
    fn get_line_threshold_binarized(&self) -> Result<i32> { ... }
    fn get_suppress_nonmax_size(&self) -> Result<i32> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::xfeatures2d::StarDetector

Required Methods§

Provided Methods§

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.

Implementors§