Trait VGGTraitConst

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

    // Provided methods
    fn get_default_name(&self) -> Result<String> { ... }
    fn get_sigma(&self) -> Result<f32> { ... }
    fn get_use_normalize_image(&self) -> Result<bool> { ... }
    fn get_use_scale_orientation(&self) -> Result<bool> { ... }
    fn get_scale_factor(&self) -> Result<f32> { ... }
    fn get_use_normalize_descriptor(&self) -> Result<bool> { ... }
}
Expand description

Constant methods for crate::xfeatures2d::VGG

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§