pub trait BFMatcherTraitConst: DescriptorMatcherConst {
    // Required method
    fn as_raw_BFMatcher(&self) -> *const c_void;

    // Provided methods
    fn is_mask_supported(&self) -> Result<bool> { ... }
    fn clone(
        &self,
        empty_train_data: bool
    ) -> Result<Ptr<dyn DescriptorMatcher>> { ... }
}
Expand description

Constant methods for crate::features2d::BFMatcher

Required Methods§

Provided Methods§

source

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

source

fn clone(&self, empty_train_data: bool) -> Result<Ptr<dyn DescriptorMatcher>>

C++ default parameters
  • empty_train_data: false

Implementors§