OpticalflowFarnebackFlag Enumeration |
http://www.emgu.com
The available flags for Farneback optical flow computation
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum OpticalflowFarnebackFlag
<FlagsAttribute>
Public Enumeration OpticalflowFarnebackFlag
[FlagsAttribute]
public enum class OpticalflowFarnebackFlag
[<FlagsAttribute>]
type OpticalflowFarnebackFlag
Members
| Member name | Value | Description |
---|
| Default | 0 |
Default
|
| UseInitialFlow | 4 |
Use the input flow as the initial flow approximation
|
| FarnebackGaussian | 256 |
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