[][src]Struct opencv::xfeatures2d::LUCID

pub struct LUCID { /* fields omitted */ }

Class implementing the locally uniform comparison image descriptor, described in LUCID

An image descriptor that can be computed very fast, while being about as robust as, for example, SURF or BRIEF.

Note: It requires a color image as input.

Implementations

impl LUCID[src]

impl LUCID[src]

pub fn create(lucid_kernel: i32, blur_kernel: i32) -> Result<Ptr<LUCID>>[src]

Parameters

  • lucid_kernel: kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth
  • blur_kernel: kernel for blurring image prior to descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth

C++ default parameters

  • lucid_kernel: 1
  • blur_kernel: 2

Trait Implementations

impl AlgorithmTrait for LUCID[src]

impl Boxed for LUCID[src]

impl Drop for LUCID[src]

impl Feature2DTrait for LUCID[src]

impl LUCIDTrait for LUCID[src]

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