Struct opencv::optflow::OpticalFlowPCAFlow
source · pub struct OpticalFlowPCAFlow { /* private fields */ }
Expand description
PCAFlow algorithm.
Implementations§
source§impl OpticalFlowPCAFlow
impl OpticalFlowPCAFlow
sourcepub fn new(
_prior: Ptr<PCAPrior>,
_basis_size: Size,
_sparse_rate: f32,
_retained_corners_fraction: f32,
_occlusions_threshold: f32,
_damping_factor: f32,
_clahe_clip: f32
) -> Result<OpticalFlowPCAFlow>
pub fn new( _prior: Ptr<PCAPrior>, _basis_size: Size, _sparse_rate: f32, _retained_corners_fraction: f32, _occlusions_threshold: f32, _damping_factor: f32, _clahe_clip: f32 ) -> Result<OpticalFlowPCAFlow>
Creates an instance of PCAFlow algorithm.
Parameters
- _prior: Learned prior or no prior (default). see also: cv::optflow::PCAPrior
- _basisSize: Number of basis vectors.
- _sparseRate: Controls density of sparse matches.
- _retainedCornersFraction: Retained corners fraction.
- _occlusionsThreshold: Occlusion threshold.
- _dampingFactor: Regularization term for solving least-squares. It is not related to the prior regularization.
- _claheClip: Clip parameter for CLAHE.
C++ default parameters
- _prior: Ptr
() - _basis_size: Size(18,14)
- _sparse_rate: 0.024
- _retained_corners_fraction: 0.2
- _occlusions_threshold: 0.0003
- _damping_factor: 0.00002
- _clahe_clip: 14
Trait Implementations§
source§impl AlgorithmTrait for OpticalFlowPCAFlow
impl AlgorithmTrait for OpticalFlowPCAFlow
source§impl AlgorithmTraitConst for OpticalFlowPCAFlow
impl AlgorithmTraitConst for OpticalFlowPCAFlow
fn as_raw_Algorithm(&self) -> *const c_void
source§fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
Stores algorithm parameters in a file storage
source§fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
Stores algorithm parameters in a file storage Read more
source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
@deprecated Read more
source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
source§impl Boxed for OpticalFlowPCAFlow
impl Boxed for OpticalFlowPCAFlow
source§impl DenseOpticalFlow for OpticalFlowPCAFlow
impl DenseOpticalFlow for OpticalFlowPCAFlow
fn as_raw_mut_DenseOpticalFlow(&mut self) -> *mut c_void
source§fn calc(
&mut self,
i0: &dyn ToInputArray,
i1: &dyn ToInputArray,
flow: &mut dyn ToInputOutputArray
) -> Result<()>
fn calc( &mut self, i0: &dyn ToInputArray, i1: &dyn ToInputArray, flow: &mut dyn ToInputOutputArray ) -> Result<()>
Calculates an optical flow. Read more
source§fn collect_garbage(&mut self) -> Result<()>
fn collect_garbage(&mut self) -> Result<()>
Releases all inner buffers.
source§impl DenseOpticalFlowConst for OpticalFlowPCAFlow
impl DenseOpticalFlowConst for OpticalFlowPCAFlow
fn as_raw_DenseOpticalFlow(&self) -> *const c_void
source§impl Drop for OpticalFlowPCAFlow
impl Drop for OpticalFlowPCAFlow
source§impl From<OpticalFlowPCAFlow> for Algorithm
impl From<OpticalFlowPCAFlow> for Algorithm
source§fn from(s: OpticalFlowPCAFlow) -> Self
fn from(s: OpticalFlowPCAFlow) -> Self
Converts to this type from the input type.
source§impl OpticalFlowPCAFlowTrait for OpticalFlowPCAFlow
impl OpticalFlowPCAFlowTrait for OpticalFlowPCAFlow
fn as_raw_mut_OpticalFlowPCAFlow(&mut self) -> *mut c_void
fn calc( &mut self, i0: &dyn ToInputArray, i1: &dyn ToInputArray, flow: &mut dyn ToInputOutputArray ) -> Result<()>
fn collect_garbage(&mut self) -> Result<()>
source§impl OpticalFlowPCAFlowTraitConst for OpticalFlowPCAFlow
impl OpticalFlowPCAFlowTraitConst for OpticalFlowPCAFlow
fn as_raw_OpticalFlowPCAFlow(&self) -> *const c_void
impl Send for OpticalFlowPCAFlow
Auto Trait Implementations§
impl RefUnwindSafe for OpticalFlowPCAFlow
impl !Sync for OpticalFlowPCAFlow
impl Unpin for OpticalFlowPCAFlow
impl UnwindSafe for OpticalFlowPCAFlow
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more