Variational optical flow refinement. More...
#include <tracking.hpp>
Public Member Functions | |
virtual CV_WRAP void | calcUV (InputArray I0, InputArray I1, InputOutputArray flow_u, InputOutputArray flow_v)=0 |
calc function overload to handle separate horizontal (u) and vertical (v) flow components (to avoid extra splits/merges) | |
virtual CV_WRAP int | getFixedPointIterations () const =0 |
Number of outer (fixed-point) iterations in the minimization procedure. | |
virtual CV_WRAP void | setFixedPointIterations (int val)=0 |
Number of outer (fixed-point) iterations in the minimization procedure. | |
virtual CV_WRAP int | getSorIterations () const =0 |
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system. | |
virtual CV_WRAP void | setSorIterations (int val)=0 |
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system. | |
virtual CV_WRAP float | getOmega () const =0 |
Relaxation factor in SOR. | |
virtual CV_WRAP void | setOmega (float val)=0 |
Relaxation factor in SOR. | |
virtual CV_WRAP float | getAlpha () const =0 |
Weight of the smoothness term. | |
virtual CV_WRAP void | setAlpha (float val)=0 |
Weight of the smoothness term. | |
virtual CV_WRAP float | getDelta () const =0 |
Weight of the color constancy term. | |
virtual CV_WRAP void | setDelta (float val)=0 |
Weight of the color constancy term. | |
virtual CV_WRAP float | getGamma () const =0 |
Weight of the gradient constancy term. | |
virtual CV_WRAP void | setGamma (float val)=0 |
Weight of the gradient constancy term. | |
virtual CV_WRAP float | getEpsilon () const =0 |
Norm value shift for robust penalizer. | |
virtual CV_WRAP void | setEpsilon (float val)=0 |
Norm value shift for robust penalizer. | |
![]() | |
virtual CV_WRAP void | calc (InputArray I0, InputArray I1, InputOutputArray flow)=0 |
Calculates an optical flow. | |
virtual CV_WRAP void | collectGarbage ()=0 |
Releases all inner buffers. | |
![]() | |
Algorithm () | |
virtual | ~Algorithm () |
virtual CV_WRAP void | clear () |
Clears the algorithm state. | |
virtual CV_WRAP void | write (FileStorage &fs) const |
Stores algorithm parameters in a file storage. | |
CV_WRAP void | write (FileStorage &fs, const String &name) const |
void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
virtual CV_WRAP void | read (const FileNode &fn) |
Reads algorithm parameters from a file storage. | |
virtual CV_WRAP bool | empty () const |
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
virtual CV_WRAP void | save (const String &filename) const |
virtual CV_WRAP String | getDefaultName () const |
Static Public Member Functions | |
static CV_WRAP Ptr< VariationalRefinement > | create () |
Creates an instance of VariationalRefinement. | |
![]() | |
template<typename _Tp > | |
static Ptr< _Tp > | read (const FileNode &fn) |
Reads algorithm from the file node. | |
template<typename _Tp > | |
static Ptr< _Tp > | load (const String &filename, const String &objname=String()) |
Loads algorithm from the file. | |
template<typename _Tp > | |
static Ptr< _Tp > | loadFromString (const String &strModel, const String &objname=String()) |
Loads algorithm from a String. | |
Additional Inherited Members | |
![]() | |
void | writeFormat (FileStorage &fs) const |
Variational optical flow refinement.
This class implements variational refinement of the input flow field, i.e. it uses input flow to initialize the minimization of the following functional:
|
pure virtual |
calc function overload to handle separate horizontal (u) and vertical (v) flow components (to avoid extra splits/merges)
|
static |
Creates an instance of VariationalRefinement.
|
pure virtual |
Weight of the smoothness term.
|
pure virtual |
Weight of the color constancy term.
|
pure virtual |
Norm value shift for robust penalizer.
|
pure virtual |
Number of outer (fixed-point) iterations in the minimization procedure.
|
pure virtual |
Weight of the gradient constancy term.
|
pure virtual |
Relaxation factor in SOR.
|
pure virtual |
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system.
|
pure virtual |
Weight of the smoothness term.
|
pure virtual |
Weight of the color constancy term.
|
pure virtual |
Norm value shift for robust penalizer.
|
pure virtual |
Number of outer (fixed-point) iterations in the minimization procedure.
|
pure virtual |
Weight of the gradient constancy term.
|
pure virtual |
Relaxation factor in SOR.
|
pure virtual |
Number of inner successive over-relaxation (SOR) iterations in the minimization procedure to solve the respective linear system.