pub trait RansacParamsTraitConst {
// Required method
fn as_raw_RansacParams(&self) -> *const c_void;
// Provided methods
fn size(&self) -> i32 { ... }
fn thresh(&self) -> f32 { ... }
fn eps(&self) -> f32 { ... }
fn prob(&self) -> f32 { ... }
fn niters(&self) -> Result<i32> { ... }
}Expand description
Constant methods for crate::videostab::RansacParams