pub trait Superres_BroxOpticalFlowConst: Superres_DenseOpticalFlowExtConst {
    // Required method
    fn as_raw_Superres_BroxOpticalFlow(&self) -> *const c_void;

    // Provided methods
    fn get_alpha(&self) -> Result<f64> { ... }
    fn get_gamma(&self) -> Result<f64> { ... }
    fn get_scale_factor(&self) -> Result<f64> { ... }
    fn get_inner_iterations(&self) -> Result<i32> { ... }
    fn get_outer_iterations(&self) -> Result<i32> { ... }
    fn get_solver_iterations(&self) -> Result<i32> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn get_alpha(&self) -> Result<f64>

Flow smoothness

See also

setAlpha

source

fn get_gamma(&self) -> Result<f64>

Gradient constancy importance

See also

setGamma

source

fn get_scale_factor(&self) -> Result<f64>

Pyramid scale factor

See also

setScaleFactor

source

fn get_inner_iterations(&self) -> Result<i32>

Number of lagged non-linearity iterations (inner loop)

See also

setInnerIterations

source

fn get_outer_iterations(&self) -> Result<i32>

Number of warping iterations (number of pyramid levels)

See also

setOuterIterations

source

fn get_solver_iterations(&self) -> Result<i32>

Number of linear system solver iterations

See also

setSolverIterations

Implementors§