Trait CharucoParametersTraitConst

Source
pub trait CharucoParametersTraitConst {
    // Required method
    fn as_raw_CharucoParameters(&self) -> *const c_void;

    // Provided methods
    fn camera_matrix(&self) -> Mat { ... }
    fn dist_coeffs(&self) -> Mat { ... }
    fn min_markers(&self) -> i32 { ... }
    fn try_refine_markers(&self) -> bool { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn camera_matrix(&self) -> Mat

cameraMatrix optional 3x3 floating-point camera matrix

Source

fn dist_coeffs(&self) -> Mat

distCoeffs optional vector of distortion coefficients

Source

fn min_markers(&self) -> i32

minMarkers number of adjacent markers that must be detected to return a charuco corner, default = 2

Source

fn try_refine_markers(&self) -> bool

try to use refine board, default false

Implementors§