pub trait Superres_BroxOpticalFlow: Superres_BroxOpticalFlowConst + Superres_DenseOpticalFlowExt {
    fn as_raw_mut_Superres_BroxOpticalFlow(&mut self) -> *mut c_void;

    fn set_alpha(&mut self, val: f64) -> Result<()> { ... }
    fn set_gamma(&mut self, val: f64) -> Result<()> { ... }
    fn set_scale_factor(&mut self, val: f64) -> Result<()> { ... }
    fn set_inner_iterations(&mut self, val: i32) -> Result<()> { ... }
    fn set_outer_iterations(&mut self, val: i32) -> Result<()> { ... }
    fn set_solver_iterations(&mut self, val: i32) -> Result<()> { ... }
}

Required Methods§

Provided Methods§

Flow smoothness

See also

setAlpha getAlpha

Gradient constancy importance

See also

setGamma getGamma

Pyramid scale factor

See also

setScaleFactor getScaleFactor

Number of lagged non-linearity iterations (inner loop)

See also

setInnerIterations getInnerIterations

Number of warping iterations (number of pyramid levels)

See also

setOuterIterations getOuterIterations

Number of linear system solver iterations

See also

setSolverIterations getSolverIterations

Implementors§