Trait opencv::hub_prelude::RansacParamsTraitConst[][src]

pub trait RansacParamsTraitConst {
    fn as_raw_RansacParams(&self) -> *const c_void;

    fn size(&self) -> i32 { ... }
fn thresh(&self) -> f32 { ... }
fn eps(&self) -> f32 { ... }
fn prob(&self) -> f32 { ... }
fn niters(&self) -> Result<i32> { ... } }
Expand description

Describes RANSAC method parameters.

Required methods

Provided methods

subset size

max error to classify as inlier

max outliers ratio

probability of success

Returns

Number of iterations that’ll be performed by RANSAC method.

Implementors