Trait opencv::prelude::VariationalRefinementConst
source · pub trait VariationalRefinementConst: DenseOpticalFlowConst {
// Required method
fn as_raw_VariationalRefinement(&self) -> *const c_void;
// Provided methods
fn get_fixed_point_iterations(&self) -> Result<i32> { ... }
fn get_sor_iterations(&self) -> Result<i32> { ... }
fn get_omega(&self) -> Result<f32> { ... }
fn get_alpha(&self) -> Result<f32> { ... }
fn get_delta(&self) -> Result<f32> { ... }
fn get_gamma(&self) -> Result<f32> { ... }
}
Expand description
Constant methods for crate::video::VariationalRefinement
Required Methods§
fn as_raw_VariationalRefinement(&self) -> *const c_void
Provided Methods§
sourcefn get_fixed_point_iterations(&self) -> Result<i32>
fn get_fixed_point_iterations(&self) -> Result<i32>
Number of outer (fixed-point) iterations in the minimization procedure.
See also
setFixedPointIterations
sourcefn get_sor_iterations(&self) -> Result<i32>
fn get_sor_iterations(&self) -> Result<i32>
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system.
See also
setSorIterations