[][src]Trait opencv::hub_prelude::BFMatcherTrait

pub trait BFMatcherTrait: DescriptorMatcher {
    pub fn as_raw_BFMatcher(&self) -> *const c_void;
pub fn as_raw_mut_BFMatcher(&mut self) -> *mut c_void; pub fn is_mask_supported(&self) -> Result<bool> { ... }
pub fn clone(
        &self,
        empty_train_data: bool
    ) -> Result<Ptr<dyn DescriptorMatcher>> { ... } }

Brute-force descriptor matcher.

For each descriptor in the first set, this matcher finds the closest descriptor in the second set by trying each one. This descriptor matcher supports masking permissible matches of descriptor sets.

Required methods

Loading content...

Provided methods

pub fn is_mask_supported(&self) -> Result<bool>[src]

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

C++ default parameters

  • empty_train_data: false
Loading content...

Implementors

impl BFMatcherTrait for BFMatcher[src]

impl BFMatcherTrait for PtrOfBFMatcher[src]

Loading content...