Trait SparsePyrLkOptFlowEstimatorTrait

Source
pub trait SparsePyrLkOptFlowEstimatorTrait:
    ISparseOptFlowEstimatorTrait
    + PyrLkOptFlowEstimatorBaseTrait
    + SparsePyrLkOptFlowEstimatorTraitConst {
    // Required method
    fn as_raw_mut_SparsePyrLkOptFlowEstimator(&mut self) -> *mut c_void;

    // Provided method
    fn run(
        &mut self,
        frame0: &impl ToInputArray,
        frame1: &impl ToInputArray,
        points0: &impl ToInputArray,
        points1: &mut impl ToInputOutputArray,
        status: &mut impl ToOutputArray,
        errors: &mut impl ToOutputArray,
    ) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn run( &mut self, frame0: &impl ToInputArray, frame1: &impl ToInputArray, points0: &impl ToInputArray, points1: &mut impl ToInputOutputArray, status: &mut impl ToOutputArray, errors: &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§