Trait opencv::cudaoptflow::prelude::CUDA_FarnebackOpticalFlowConst[][src]

pub trait CUDA_FarnebackOpticalFlowConst: CUDA_DenseOpticalFlowConst {
    fn as_raw_CUDA_FarnebackOpticalFlow(&self) -> *const c_void;

    fn get_num_levels(&self) -> Result<i32> { ... }
fn get_pyr_scale(&self) -> Result<f64> { ... }
fn get_fast_pyramids(&self) -> Result<bool> { ... }
fn get_win_size(&self) -> Result<i32> { ... }
fn get_num_iters(&self) -> Result<i32> { ... }
fn get_poly_n(&self) -> Result<i32> { ... }
fn get_poly_sigma(&self) -> Result<f64> { ... }
fn get_flags(&self) -> Result<i32> { ... } }
Expand description

Class computing a dense optical flow using the Gunnar Farneback’s algorithm.

Required methods

Provided methods

Implementors