Enum opencv::objdetect::CornerRefineMethod
source · #[repr(C)]
pub enum CornerRefineMethod {
CORNER_REFINE_NONE,
CORNER_REFINE_SUBPIX,
CORNER_REFINE_CONTOUR,
CORNER_REFINE_APRILTAG,
}
Variants§
CORNER_REFINE_NONE
Tag and corners detection based on the ArUco approach
CORNER_REFINE_SUBPIX
ArUco approach and refine the corners locations using corner subpixel accuracy
CORNER_REFINE_CONTOUR
ArUco approach and refine the corners locations using the contour-points line fitting
CORNER_REFINE_APRILTAG
Tag and corners detection based on the AprilTag 2 approach wang2016iros
Trait Implementations§
source§impl Clone for CornerRefineMethod
impl Clone for CornerRefineMethod
source§fn clone(&self) -> CornerRefineMethod
fn clone(&self) -> CornerRefineMethod
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CornerRefineMethod
impl Debug for CornerRefineMethod
source§impl PartialEq<CornerRefineMethod> for CornerRefineMethod
impl PartialEq<CornerRefineMethod> for CornerRefineMethod
source§fn eq(&self, other: &CornerRefineMethod) -> bool
fn eq(&self, other: &CornerRefineMethod) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.