DenseOpticalFlowExtensionsCalc Method |
http://www.emgu.com
Calculates an optical flow.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic static void Calc(
this IDenseOpticalFlow opticalFlow,
IInputArray i0,
IInputArray i1,
IInputOutputArray flow
)
<ExtensionAttribute>
Public Shared Sub Calc (
opticalFlow As IDenseOpticalFlow,
i0 As IInputArray,
i1 As IInputArray,
flow As IInputOutputArray
)
public:
[ExtensionAttribute]
static void Calc(
IDenseOpticalFlow^ opticalFlow,
IInputArray^ i0,
IInputArray^ i1,
IInputOutputArray^ flow
)
[<ExtensionAttribute>]
static member Calc :
opticalFlow : IDenseOpticalFlow *
i0 : IInputArray *
i1 : IInputArray *
flow : IInputOutputArray -> unit
Parameters
- opticalFlow
- Type: Emgu.CVIDenseOpticalFlow
The dense optical flow object - i0
- Type: Emgu.CVIInputArray
First 8-bit single-channel input image. - i1
- Type: Emgu.CVIInputArray
Second input image of the same size and the same type as prev. - flow
- Type: Emgu.CVIInputOutputArray
Computed flow image that has the same size as prev and type CV_32FC2
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDenseOpticalFlow. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also