pub trait CalibrateRobertsonTraitConst: CalibrateCRFTraitConst {
// Required method
fn as_raw_CalibrateRobertson(&self) -> *const c_void;
// Provided methods
fn get_max_iter(&self) -> Result<i32> { ... }
fn get_threshold(&self) -> Result<f32> { ... }
fn get_radiance(&self) -> Result<Mat> { ... }
}Expand description
Constant methods for crate::photo::CalibrateRobertson
Required Methods§
fn as_raw_CalibrateRobertson(&self) -> *const c_void
Provided Methods§
fn get_max_iter(&self) -> Result<i32>
fn get_threshold(&self) -> Result<f32>
fn get_radiance(&self) -> Result<Mat>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.