pub trait DensePyrLkOptFlowEstimatorGpuTrait: DensePyrLkOptFlowEstimatorGpuTraitConst + IDenseOptFlowEstimatorTrait + PyrLkOptFlowEstimatorBaseTrait {
    // Required method
    fn as_raw_mut_DensePyrLkOptFlowEstimatorGpu(&mut self) -> *mut c_void;

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

Required Methods§

Provided Methods§

source

fn run( &mut self, frame0: &impl ToInputArray, frame1: &impl ToInputArray, flow_x: &mut impl ToInputOutputArray, flow_y: &mut impl ToInputOutputArray, errors: &mut impl ToOutputArray ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§