http://www.emgu.com
Type for cvCalcOpticalFlowPyrLK
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
SyntaxPublic Enumeration LKFlowFlag
public enum class LKFlowFlag
Members
| Member name | Value | Description |
---|
| Default | 0 |
The default type
|
| UserInitialFlow | 4 |
Uses initial estimations, stored in nextPts; if the flag is not set, then prevPts is copied to nextPts and is considered the initial estimate.
|
| LKGetMinEigenvals | 8 |
use minimum eigen values as an error measure (see minEigThreshold description); if the flag is not set, then L1 distance between patches around the original and a moved point, divided by number of pixels in a window, is used as a error measure.
|
See Also