Computes flow for every pixel of the first input image using Lucas & Kanade algorithm
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
Parameters
- prev
- Image<(Of <(Gray, Byte>)>)
First image
- curr
- Image<(Of <(Gray, Byte>)>)
Second image
- winSize
- Size
Size of the averaging window used for grouping pixels
- velx
- Image<(Of <(Gray, Single>)>)
Horizontal component of the optical flow of the same size as input images
- vely
- Image<(Of <(Gray, Single>)>)
Vertical component of the optical flow of the same size as input images
See Also