Enum opencv::features2d::DrawMatchesFlags [−][src]
#[repr(C)]
pub enum DrawMatchesFlags {
DEFAULT,
DRAW_OVER_OUTIMG,
NOT_DRAW_SINGLE_POINTS,
DRAW_RICH_KEYPOINTS,
}
Variants
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).
Output image matrix will not be created (Mat::create). Matches will be drawn on existing content of output image.
Single keypoints will not be drawn.
For each keypoint the circle around keypoint with keypoint size and orientation will be drawn.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DrawMatchesFlags
impl Send for DrawMatchesFlags
impl Sync for DrawMatchesFlags
impl Unpin for DrawMatchesFlags
impl UnwindSafe for DrawMatchesFlags
Blanket Implementations
Mutably borrows from an owned value. Read more