[][src]Struct opencv::xfeatures2d::BriefDescriptorExtractor

pub struct BriefDescriptorExtractor { /* fields omitted */ }

Class for computing BRIEF descriptors described in calon2010 .

Parameters

  • bytes: legth of the descriptor in bytes, valid values are: 16, 32 (default) or 64 .
  • use_orientation: sample patterns using keypoints orientation, disabled by default.

Methods

impl BriefDescriptorExtractor[src]

impl BriefDescriptorExtractor[src]

pub fn create(
    bytes: i32,
    use_orientation: bool
) -> Result<PtrOfBriefDescriptorExtractor>
[src]

C++ default parameters

  • bytes: 32
  • use_orientation: false

Trait Implementations

impl AlgorithmTrait for BriefDescriptorExtractor[src]

impl Drop for BriefDescriptorExtractor[src]

impl Send for BriefDescriptorExtractor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.