RansacParamsTraitConst

Trait RansacParamsTraitConst 

Source
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

Required Methods§

Provided Methods§

Source

fn size(&self) -> i32

subset size

Source

fn thresh(&self) -> f32

max error to classify as inlier

Source

fn eps(&self) -> f32

max outliers ratio

Source

fn prob(&self) -> f32

probability of success

Source

fn niters(&self) -> Result<i32>

§Returns

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

Implementors§