pub trait FromFileMotionReaderTrait: FromFileMotionReaderTraitConst + ImageMotionEstimatorBase {
    // Required method
    fn as_raw_mut_FromFileMotionReader(&mut self) -> *mut c_void;

    // Provided method
    fn estimate(
        &mut self,
        frame0: &Mat,
        frame1: &Mat,
        ok: &mut bool
    ) -> Result<Mat> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn estimate(&mut self, frame0: &Mat, frame1: &Mat, ok: &mut bool) -> Result<Mat>

Implementors§