Trait opencv::prelude::MotionEstimatorL1Trait  
source · pub trait MotionEstimatorL1Trait: MotionEstimatorBaseTrait + MotionEstimatorL1TraitConst {
    // Required method
    fn as_raw_mut_MotionEstimatorL1(&mut self) -> *mut c_void;
    // Provided methods
    fn estimate(
        &mut self,
        points0: &impl ToInputArray,
        points1: &impl ToInputArray,
        ok: &mut bool
    ) -> Result<Mat> { ... }
    fn estimate_def(
        &mut self,
        points0: &impl ToInputArray,
        points1: &impl ToInputArray
    ) -> Result<Mat> { ... }
}Expand description
Mutable methods for crate::videostab::MotionEstimatorL1
Required Methods§
fn as_raw_mut_MotionEstimatorL1(&mut self) -> *mut c_void
Provided Methods§
sourcefn estimate(
    &mut self,
    points0: &impl ToInputArray,
    points1: &impl ToInputArray,
    ok: &mut bool
) -> Result<Mat>
 
fn estimate( &mut self, points0: &impl ToInputArray, points1: &impl ToInputArray, ok: &mut bool ) -> Result<Mat>
C++ default parameters
- ok: 0
 
sourcefn estimate_def(
    &mut self,
    points0: &impl ToInputArray,
    points1: &impl ToInputArray
) -> Result<Mat>
 
fn estimate_def( &mut self, points0: &impl ToInputArray, points1: &impl ToInputArray ) -> Result<Mat>
Note
This alternative version of MotionEstimatorL1Trait::estimate function uses the following default values for its arguments:
- ok: 0
 
Object Safety§
This trait is not object safe.