Trait TranslationBasedLocalOutlierRejectorTrait

Source
pub trait TranslationBasedLocalOutlierRejectorTrait: IOutlierRejectorTrait + TranslationBasedLocalOutlierRejectorTraitConst {
    // Required method
    fn as_raw_mut_TranslationBasedLocalOutlierRejector(&mut self) -> *mut c_void;

    // Provided methods
    fn set_cell_size(&mut self, val: Size) -> Result<()> { ... }
    fn set_ransac_params(&mut self, val: impl RansacParamsTrait) -> Result<()> { ... }
    fn process(
        &mut self,
        frame_size: Size,
        points0: &impl ToInputArray,
        points1: &impl ToInputArray,
        mask: &mut impl ToOutputArray,
    ) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn set_cell_size(&mut self, val: Size) -> Result<()>

Source

fn set_ransac_params(&mut self, val: impl RansacParamsTrait) -> Result<()>

Source

fn process( &mut self, frame_size: Size, points0: &impl ToInputArray, points1: &impl ToInputArray, mask: &mut impl ToOutputArray, ) -> Result<()>

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.

Implementors§