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
Constant methods for crate::objdetect::CharucoParameters
Required Methods§
fn as_raw_CharucoParameters(&self) -> *const c_void
Provided Methods§
Sourcefn camera_matrix(&self) -> Mat
fn camera_matrix(&self) -> Mat
cameraMatrix optional 3x3 floating-point camera matrix
Sourcefn dist_coeffs(&self) -> Mat
fn dist_coeffs(&self) -> Mat
distCoeffs optional vector of distortion coefficients
Sourcefn min_markers(&self) -> i32
fn min_markers(&self) -> i32
minMarkers number of adjacent markers that must be detected to return a charuco corner, default = 2
Sourcefn try_refine_markers(&self) -> bool
fn try_refine_markers(&self) -> bool
try to use refine board, default false