The available flags for farneback optical flow computation

Namespace: Emgu.CV.CvEnum
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
[FlagsAttribute]
public enum OPTICALFLOW_FARNEBACK_FLAG
<FlagsAttribute> _
Public Enumeration OPTICALFLOW_FARNEBACK_FLAG
[FlagsAttribute]
public enum class OPTICALFLOW_FARNEBACK_FLAG

Members

MemberDescription
DEFAULT
Default
USE_INITIAL_FLOW
Use the input flow as the initial flow approximation
FARNEBACK_GAUSSIAN
Use a Gaussian winsize x winsizefilter instead of box filter of the same size for optical flow estimation. Usually, this option gives more accurate flow than with a box filter, at the cost of lower speed (and normally winsize for a Gaussian window should be set to a larger value to achieve the same level of robustness)

See Also