Click or drag to resize

VariationalRefinement Class

http://www.emgu.com
This class implements variational refinement of the input flow field.
Inheritance Hierarchy

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public class VariationalRefinement : UnmanagedObject, 
	IDenseOpticalFlow, IAlgorithm

The VariationalRefinement type exposes the following members.

Constructors
  NameDescription
Public methodVariationalRefinement
Create an instance of Variational Refinement.
Top
Properties
  NameDescription
Public propertyAlgorithmPtr
Pointer to the unmanaged cv::Algorithm
Public propertyAlpha
Weight of the smoothness term
Public propertyDelta
Weight of the color constancy term
Public propertyDenseOpticalFlowPtr
Pointer to the unmanaged cv::DenseOpticalFlow
Public propertyFixedPointIterations
Number of outer (fixed-point) iterations in the minimization procedure.
Public propertyGamma
Weight of the gradient constancy term
Public propertyOmega
Relaxation factor in SOR
Public propertyPtr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Public propertySorIterations
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system.
Top
Methods
  NameDescription
Public methodDispose
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
Protected methodDisposeObject
Release the unmanaged memory associated with this Optical flow algorithm.
(Overrides DisposableObjectDisposeObject.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize
Destructor
(Inherited from DisposableObject.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Protected methodReleaseManagedResources
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
Public methodToString (Inherited from Object.)
Top
Fields
  NameDescription
Protected field_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Top
Extension Methods
  NameDescription
Public Extension MethodCalc
Calculates an optical flow.
(Defined by DenseOpticalFlowExtensions.)
Public Extension MethodClear
Clear the algorithm
(Defined by AlgorithmExtensions.)
Public Extension MethodGetDefaultName
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.
(Defined by AlgorithmExtensions.)
Public Extension MethodIsEmpty
Returns true if the Algorithm is empty. e.g. in the very beginning or after unsuccessful read.
(Defined by AlgorithmExtensions.)
Public Extension MethodLoad
Loads algorithm from the file
(Defined by AlgorithmExtensions.)
Public Extension MethodLoadFromString
Loads algorithm from a String
(Defined by AlgorithmExtensions.)
Public Extension MethodRead
Reads algorithm parameters from a file storage.
(Defined by AlgorithmExtensions.)
Public Extension MethodSave
Save the algorithm to file
(Defined by AlgorithmExtensions.)
Public Extension MethodSaveToString
Save the algorithm to a string
(Defined by AlgorithmExtensions.)
Public Extension MethodWrite(FileStorage)Overloaded.
Stores algorithm parameters in a file storage
(Defined by AlgorithmExtensions.)
Public Extension MethodWrite(FileStorage, String)Overloaded.
Stores algorithm parameters in a file storage
(Defined by AlgorithmExtensions.)
Top
Remarks
See: Thomas Brox, Andres Bruhn, Nils Papenberg, and Joachim Weickert. High accuracy optical flow estimation based on a theory for warping. In Computer Vision-ECCV 2004, pages 25-36. Springer, 2004.
See Also