pub trait SuperRes_BroxOpticalFlowTraitConst: SuperRes_DenseOpticalFlowExtTraitConst {
// 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
Constant methods for crate::superres::SuperRes_BroxOpticalFlow
Required Methods§
fn as_raw_SuperRes_BroxOpticalFlow(&self) -> *const c_void
Provided Methods§
Sourcefn get_scale_factor(&self) -> Result<f64>
fn get_scale_factor(&self) -> Result<f64>
Sourcefn get_inner_iterations(&self) -> Result<i32>
fn get_inner_iterations(&self) -> Result<i32>
Sourcefn get_outer_iterations(&self) -> Result<i32>
fn get_outer_iterations(&self) -> Result<i32>
Sourcefn get_solver_iterations(&self) -> Result<i32>
fn get_solver_iterations(&self) -> Result<i32>
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.