Struct opencv::optflow::RLOFOpticalFlowParameter

source ·
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: <RLOFOpticalFlowParameter as OpenCVFromExtern>::ExternReceive ) -> Self

Wrap the specified raw pointer Read more
source§

fn into_raw( self ) -> <RLOFOpticalFlowParameter as OpenCVTypeExternContainer>::ExternSendMut

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

fn as_raw( &self ) -> <RLOFOpticalFlowParameter as OpenCVTypeExternContainer>::ExternSend

Return the underlying raw pointer. Read more
source§

fn as_raw_mut( &mut self ) -> <RLOFOpticalFlowParameter as OpenCVTypeExternContainer>::ExternSendMut

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 T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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<Mat> ModifyInplace for Mat
where Mat: Boxed,

source§

unsafe fn modify_inplace<Res>( &mut self, f: impl FnOnce(&Mat, &mut Mat) -> Res ) -> Res

Helper function to call OpenCV functions that allow in-place modification of a Mat or another similar object. By passing a mutable reference to the Mat to this function your closure will get called with the read reference and a write references to the same Mat. This is of course unsafe as it breaks the Rust aliasing rules, but it might be useful for some performance sensitive operations. One example of an OpenCV function that allows such in-place modification is imgproc::threshold. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.