Robust Local Optical Flow Libary Documentation
V 1.2
|
PLK/RLOF parameter base class The parameter base class provides basic interfaces to set up the algorithm parameter such as number of levels. The parameter class is associated to all methods. More...
#include <D:/workspace/FIONA/Arbeit_Senst/publicProjects/RLOF_Windows/include/OpticalFlow/RLOFParameter.h>
Public Types | |
enum | WindowType { WIN_STANDART = 0, WIN_CROSSADAPTIVE = 2, WIN_SLIC = 4 } |
enum | SolverType { ITER_STANDART = 0, ITER_BE = 2 } |
enum | IlluminationModelType { ILL_NO_MODEL = 0, ILL_GAIN_MODEL = 2, ILL_CONST_MODEL = 4, ILL_TEST_MODEL = 8 } |
Public Member Functions | |
void | solverType (SolverType val) |
void | level (int val) |
void | iteration (int val) |
void | verbosity (int val) |
WindowType | windowType () const |
CLocalFlowParameter::SolverType | solverType () const |
const int | level () const |
const int | iteration () const |
const int | verbosity () const |
Protected Attributes | |
WindowType | m_WindowType |
SolverType | m_SolverType |
int | m_MaxLevel |
int | m_MaxIter |
int | m_WinSize |
int | m_Verbosity |
int | m_Flags |
PLK/RLOF parameter base class The parameter base class provides basic interfaces to set up the algorithm parameter such as number of levels. The parameter class is associated to all methods.
Definition at line 134 of file RLOFParameter.h.
Enumeration will be not used.
Enumerator | |
---|---|
ILL_NO_MODEL |
Use standard brightness constancy assumption. |
ILL_GAIN_MODEL |
not used. |
ILL_CONST_MODEL |
not used. |
Definition at line 149 of file RLOFParameter.h.
Enumeration specifying the iterative refinement strategy.
Enumerator | |
---|---|
ITER_STANDART |
Standard iterative solver. |
ITER_BE |
Bilinear equation solver, described in Senst et al. 2013 . |
Definition at line 144 of file RLOFParameter.h.
Enumeration specifying the support region construction.
Enumerator | |
---|---|
WIN_STANDART |
Rectangle support region. |
WIN_CROSSADAPTIVE |
Cross based adaptive support region, described in Senst et al. 2014 . |
Definition at line 139 of file RLOFParameter.h.
|
inline |
Set the number of maximal iterations.
val | positive number. |
Definition at line 182 of file RLOFParameter.h.
|
inline |
Interface to retrieve the number maximal iterations used for the iterative refinement.
Definition at line 214 of file RLOFParameter.h.
|
inline |
Set the number of used pyramid levels.
val | positive number. |
Definition at line 173 of file RLOFParameter.h.
|
inline |
Interface to retrieve the number of Gaussian pyramid levels used.
Definition at line 210 of file RLOFParameter.h.
|
inline |
Set/Unset the usage of different iterative solver strategies
val | TODO description |
Definition at line 166 of file RLOFParameter.h.
|
inline |
Interface to retrieve the used solver.
Definition at line 206 of file RLOFParameter.h.
|
inline |
set the verbosity level (debug output level) default 0
val | Verbosity level
|
Definition at line 191 of file RLOFParameter.h.
|
inline |
Interface to retrieve the verbosity level. The verbosity or debug level of 0 denotes no output to the std::cout
Definition at line 219 of file RLOFParameter.h.
|
inline |
Interface to retrieve the used support region shape.
Definition at line 200 of file RLOFParameter.h.
|
protected |
A positive number specifying additional program parameter.
Definition at line 228 of file RLOFParameter.h.
|
protected |
A positive number specifying the maximal number of iteration used for the iterative refinement.
Definition at line 225 of file RLOFParameter.h.
|
protected |
A positive number specifying the number of levels used for the Gaussian pyramid.
Definition at line 224 of file RLOFParameter.h.
|
protected |
Enumeration specifying iterative refinement strategy.
Definition at line 223 of file RLOFParameter.h.
|
protected |
A positive number specifying the debug level.
Definition at line 227 of file RLOFParameter.h.
|
protected |
Enumeration specifying support region construction.
Definition at line 219 of file RLOFParameter.h.
|
protected |
A positive number specifying the support region size.
Definition at line 226 of file RLOFParameter.h.
Referenced by CPLKParameter::winSize().