Struct opencv::mcc::MCC_CChecker
source · pub struct MCC_CChecker { /* private fields */ }Expand description
CChecker
\brief checker object
This class contains the information about the detected checkers,i.e, their type, the corners of the chart, the color profile, the cost, centers chart, etc.
Implementations§
source§impl MCC_CChecker
impl MCC_CChecker
sourcepub fn create() -> Result<Ptr<MCC_CChecker>>
pub fn create() -> Result<Ptr<MCC_CChecker>>
\brief Create a new CChecker object. \return A pointer to the implementation of the CChecker
Trait Implementations§
source§impl Boxed for MCC_CChecker
impl Boxed for MCC_CChecker
source§impl Debug for MCC_CChecker
impl Debug for MCC_CChecker
source§impl Drop for MCC_CChecker
impl Drop for MCC_CChecker
source§impl MCC_CCheckerTrait for MCC_CChecker
impl MCC_CCheckerTrait for MCC_CChecker
fn as_raw_mut_MCC_CChecker(&mut self) -> *mut c_void
fn set_target(&mut self, _target: MCC_TYPECHART) -> Result<()>
fn set_box(&mut self, _box: Vector<Point2f>) -> Result<()>
fn set_charts_rgb(&mut self, _charts_rgb: Mat) -> Result<()>
fn set_charts_y_cb_cr(&mut self, _charts_y_cb_cr: Mat) -> Result<()>
fn set_cost(&mut self, _cost: f32) -> Result<()>
fn set_center(&mut self, _center: Point2f) -> Result<()>
fn get_target(&mut self) -> Result<MCC_TYPECHART>
fn get_box(&mut self) -> Result<Vector<Point2f>>
fn get_charts_rgb(&mut self) -> Result<Mat>
fn get_charts_y_cb_cr(&mut self) -> Result<Mat>
fn get_cost(&mut self) -> Result<f32>
fn get_center(&mut self) -> Result<Point2f>
source§impl MCC_CCheckerTraitConst for MCC_CChecker
impl MCC_CCheckerTraitConst for MCC_CChecker
fn as_raw_MCC_CChecker(&self) -> *const c_void
impl Send for MCC_CChecker
Auto Trait Implementations§
impl RefUnwindSafe for MCC_CChecker
impl !Sync for MCC_CChecker
impl Unpin for MCC_CChecker
impl UnwindSafe for MCC_CChecker
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more