[][src]Struct opencv::line_descriptor::BinaryDescriptor

pub struct BinaryDescriptor { /* fields omitted */ }

Class implements both functionalities for detection of lines and computation of their binary descriptor.

Class' interface is mainly based on the ones of classical detectors and extractors, such as Feature2d's @ref features2d_main and @ref features2d_match. Retrieved information about lines is stored in line_descriptor::KeyLine objects.

Implementations

impl BinaryDescriptor[src]

impl BinaryDescriptor[src]

pub fn new(parameters: &BinaryDescriptor_Params) -> Result<BinaryDescriptor>[src]

Constructor

Parameters

  • parameters: configuration parameters BinaryDescriptor::Params

If no argument is provided, constructor sets default values (see comments in the code snippet in previous section). Default values are strongly recommended.

C++ default parameters

  • parameters: BinaryDescriptor::Params()

pub fn create_binary_descriptor() -> Result<Ptr<BinaryDescriptor>>[src]

Create a BinaryDescriptor object with default parameters (or with the ones provided) and return a smart pointer to it

pub fn create_binary_descriptor_1(
    parameters: BinaryDescriptor_Params
) -> Result<Ptr<BinaryDescriptor>>
[src]

Trait Implementations

impl AlgorithmTrait for BinaryDescriptor[src]

impl BinaryDescriptorTrait for BinaryDescriptor[src]

impl Boxed for BinaryDescriptor[src]

impl Drop for BinaryDescriptor[src]

impl Send for BinaryDescriptor[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.