pub trait DualTVL1OpticalFlowConst: DenseOpticalFlowConst {
Show 13 methods // Required method fn as_raw_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_gamma(&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_inner_iterations(&self) -> Result<i32> { ... } fn get_outer_iterations(&self) -> Result<i32> { ... } fn get_use_initial_flow(&self) -> Result<bool> { ... } fn get_scale_step(&self) -> Result<f64> { ... } fn get_median_filtering(&self) -> Result<i32> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn get_tau(&self) -> Result<f64>

Time step of the numerical scheme

See also

setTau

source

fn get_lambda(&self) -> Result<f64>

Weight parameter for the data term, attachment parameter

See also

setLambda

source

fn get_theta(&self) -> Result<f64>

Weight parameter for (u - v)^2, tightness parameter

See also

setTheta

source

fn get_gamma(&self) -> Result<f64>

coefficient for additional illumination variation term

See also

setGamma

source

fn get_scales_number(&self) -> Result<i32>

Number of scales used to create the pyramid of images

See also

setScalesNumber

source

fn get_warpings_number(&self) -> Result<i32>

Number of warpings per scale

See also

setWarpingsNumber

source

fn get_epsilon(&self) -> Result<f64>

Stopping criterion threshold used in the numerical scheme, which is a trade-off between precision and running time

See also

setEpsilon

source

fn get_inner_iterations(&self) -> Result<i32>

Inner iterations (between outlier filtering) used in the numerical scheme

See also

setInnerIterations

source

fn get_outer_iterations(&self) -> Result<i32>

Outer iterations (number of inner loops) used in the numerical scheme

See also

setOuterIterations

source

fn get_use_initial_flow(&self) -> Result<bool>

Use initial flow

See also

setUseInitialFlow

source

fn get_scale_step(&self) -> Result<f64>

Step between scales (<1)

See also

setScaleStep

source

fn get_median_filtering(&self) -> Result<i32>

Median filter kernel size (1 = no filter) (3 or 5)

See also

setMedianFiltering

Implementors§