Enum opencv::features2d::DrawMatchesFlags
source · [−]#[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
sourceimpl Clone for DrawMatchesFlags
impl Clone for DrawMatchesFlags
sourcefn clone(&self) -> DrawMatchesFlags
fn clone(&self) -> DrawMatchesFlags
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DrawMatchesFlags
impl Debug for DrawMatchesFlags
sourceimpl PartialEq<DrawMatchesFlags> for DrawMatchesFlags
impl PartialEq<DrawMatchesFlags> for DrawMatchesFlags
sourcefn eq(&self, other: &DrawMatchesFlags) -> bool
fn eq(&self, other: &DrawMatchesFlags) -> bool
impl Copy for DrawMatchesFlags
impl StructuralPartialEq for DrawMatchesFlags
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more