pub trait VariationalRefinementTraitConst: DenseOpticalFlowTraitConst {
// 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> { ... }
fn get_epsilon(&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
Sourcefn get_epsilon(&self) -> Result<f32>
fn get_epsilon(&self) -> Result<f32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.