pub trait SuperRes_DualTVL1OpticalFlowTraitConst: SuperRes_DenseOpticalFlowExtTraitConst {
// Required method
fn as_raw_SuperRes_DualTVL1OpticalFlow(&self) -> *const c_void;
// Provided methods
fn get_tau(&self) -> Result<f64> { ... }
fn get_lambda(&self) -> Result<f64> { ... }
fn get_theta(&self) -> Result<f64> { ... }
fn get_scales_number(&self) -> Result<i32> { ... }
fn get_warpings_number(&self) -> Result<i32> { ... }
fn get_epsilon(&self) -> Result<f64> { ... }
fn get_iterations(&self) -> Result<i32> { ... }
fn get_use_initial_flow(&self) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::superres::SuperRes_DualTVL1OpticalFlow
Required Methods§
fn as_raw_SuperRes_DualTVL1OpticalFlow(&self) -> *const c_void
Provided Methods§
Sourcefn get_lambda(&self) -> Result<f64>
fn get_lambda(&self) -> Result<f64>
§See also
setLambda
Sourcefn get_scales_number(&self) -> Result<i32>
fn get_scales_number(&self) -> Result<i32>
§See also
setScalesNumber
Sourcefn get_warpings_number(&self) -> Result<i32>
fn get_warpings_number(&self) -> Result<i32>
§See also
setWarpingsNumber
Sourcefn get_epsilon(&self) -> Result<f64>
fn get_epsilon(&self) -> Result<f64>
§See also
setEpsilon
Sourcefn get_iterations(&self) -> Result<i32>
fn get_iterations(&self) -> Result<i32>
§See also
setIterations
Sourcefn get_use_initial_flow(&self) -> Result<bool>
fn get_use_initial_flow(&self) -> Result<bool>
§See also
setUseInitialFlow
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.