pub struct RLOFOpticalFlowParameter { /* private fields */ }
Expand description

This is used store and set up the parameters of the robust local optical flow (RLOF) algoritm.

The RLOF is a fast local optical flow approach described in Senst2012 Senst2013 Senst2014 and Senst2016 similar to the pyramidal iterative Lucas-Kanade method as proposed by Bouguet00. More details and experiments can be found in the following thesis Senst2019. The implementation is derived from optflow::calcOpticalFlowPyrLK(). This RLOF implementation can be seen as an improved pyramidal iterative Lucas-Kanade and includes a set of improving modules. The main improvements in respect to the pyramidal iterative Lucas-Kanade are:

  • A more robust redecending M-estimator framework (see Senst2012) to improve the accuracy at motion boundaries and appearing and disappearing pixels.
  • an adaptive support region strategies to improve the accuracy at motion boundaries to reduce the corona effect, i.e oversmoothing of the PLK at motion/object boundaries. The cross-based segementation strategy (SR_CROSS) proposed in Senst2014 uses a simple segmenation approach to obtain the optimal shape of the support region.
  • To deal with illumination changes (outdoor sequences and shadow) the intensity constancy assumption based optical flow equation has been adopt with the Gennert and Negahdaripour illumination model (see Senst2016). This model can be switched on/off with the useIlluminationModel variable.
  • By using a global motion prior initialization (see Senst2016) of the iterative refinement the accuracy could be significantly improved for large displacements. This initialization can be switched on and of with useGlobalMotionPrior variable.

The RLOF can be computed with the SparseOpticalFlow class or function interface to track a set of features or with the DenseOpticalFlow class or function interface to compute dense optical flow.

See also

optflow::DenseRLOFOpticalFlow, optflow::calcOpticalFlowDenseRLOF(), optflow::SparseRLOFOpticalFlow, optflow::calcOpticalFlowSparseRLOF()

Implementations§

source§

impl RLOFOpticalFlowParameter

source

pub fn default() -> Result<RLOFOpticalFlowParameter>

source

pub fn create() -> Result<Ptr<RLOFOpticalFlowParameter>>

Creates instance of optflow::RLOFOpticalFlowParameter

Trait Implementations§

source§

impl Boxed for RLOFOpticalFlowParameter

source§

unsafe fn from_raw(ptr: *mut c_void) -> Self

Wrap the specified raw pointer Read more
source§

fn into_raw(self) -> *mut c_void

Return an the underlying raw pointer while consuming this wrapper. Read more
source§

fn as_raw(&self) -> *const c_void

Return the underlying raw pointer. Read more
source§

fn as_raw_mut(&mut self) -> *mut c_void

Return the underlying mutable raw pointer Read more
source§

impl Debug for RLOFOpticalFlowParameter

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for RLOFOpticalFlowParameter

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl RLOFOpticalFlowParameterTrait for RLOFOpticalFlowParameter

source§

fn as_raw_mut_RLOFOpticalFlowParameter(&mut self) -> *mut c_void

source§

fn set_solver_type(&mut self, val: SolverType)

source§

fn set_support_region_type(&mut self, val: SupportRegionType)

source§

fn set_norm_sigma0(&mut self, val: f32)

source§

fn set_norm_sigma1(&mut self, val: f32)

source§

fn set_small_win_size(&mut self, val: i32)

source§

fn set_large_win_size(&mut self, val: i32)

source§

fn set_cross_segmentation_threshold(&mut self, val: i32)

source§

fn set_max_level(&mut self, val: i32)

source§

fn set_use_initial_flow(&mut self, val: bool)

source§

fn set_use_illumination_model(&mut self, val: bool)

source§

fn set_use_global_motion_prior(&mut self, val: bool)

source§

fn set_max_iteration(&mut self, val: i32)

source§

fn set_min_eigen_value(&mut self, val: f32)

source§

fn set_global_motion_ransac_threshold(&mut self, val: f32)

source§

fn set_use_m_estimator(&mut self, val: bool) -> Result<()>

Enable M-estimator or disable and use least-square estimator. Enables M-estimator by setting sigma parameters to (3.2, 7.0). Disabling M-estimator can reduce * runtime, while enabling can improve the accuracy. Read more
source§

fn set_solver_type_1(&mut self, val: SolverType) -> Result<()>

source§

fn set_support_region_type_1(&mut self, val: SupportRegionType) -> Result<()>

source§

fn set_norm_sigma0_1(&mut self, val: f32) -> Result<()>

source§

fn set_norm_sigma1_1(&mut self, val: f32) -> Result<()>

source§

fn set_small_win_size_1(&mut self, val: i32) -> Result<()>

source§

fn set_large_win_size_1(&mut self, val: i32) -> Result<()>

source§

fn set_cross_segmentation_threshold_1(&mut self, val: i32) -> Result<()>

source§

fn set_max_level_1(&mut self, val: i32) -> Result<()>

source§

fn set_use_initial_flow_1(&mut self, val: bool) -> Result<()>

source§

fn set_use_illumination_model_1(&mut self, val: bool) -> Result<()>

source§

fn set_use_global_motion_prior_1(&mut self, val: bool) -> Result<()>

source§

fn set_max_iteration_1(&mut self, val: i32) -> Result<()>

source§

fn set_min_eigen_value_1(&mut self, val: f32) -> Result<()>

source§

fn set_global_motion_ransac_threshold_1(&mut self, val: f32) -> Result<()>

source§

impl RLOFOpticalFlowParameterTraitConst for RLOFOpticalFlowParameter

source§

impl Send for RLOFOpticalFlowParameter

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.