[][src]Enum opencv::features2d::DrawMatchesFlags

#[repr(C)]pub enum DrawMatchesFlags {
    DEFAULT,
    DRAW_OVER_OUTIMG,
    NOT_DRAW_SINGLE_POINTS,
    DRAW_RICH_KEYPOINTS,
}

Variants

DEFAULT

Output image matrix will be created (Mat::create), i.e. existing memory of output image may be reused. Two source image, matches and single keypoints will be drawn. For each keypoint only the center point will be drawn (without the circle around keypoint with keypoint size and orientation).

DRAW_OVER_OUTIMG

Output image matrix will not be created (Mat::create). Matches will be drawn on existing content of output image.

NOT_DRAW_SINGLE_POINTS

Single keypoints will not be drawn.

DRAW_RICH_KEYPOINTS

For each keypoint the circle around keypoint with keypoint size and orientation will be drawn.

Trait Implementations

impl Clone for DrawMatchesFlags[src]

impl Copy for DrawMatchesFlags[src]

impl Debug for DrawMatchesFlags[src]

impl PartialEq<DrawMatchesFlags> for DrawMatchesFlags[src]

impl StructuralPartialEq for DrawMatchesFlags[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.