Typedefs | |
typedef void * | OPTICALFLOW |
CVB Optical Flow intermediate result object handle. More... | |
Enumerations | |
enum | TOptFlowInterpolation { OFI_None = 0 , OFI_NearestNeighbour = 1 , OFI_BiLinear = 2 , OFI_Cubic = 3 } |
Determines the method for generating interpolated motion vectors at locations between the lattice points for which the optical flow is actually evaluated. More... | |
typedef void* OPTICALFLOW |
CVB Optical Flow intermediate result object handle.
After initialization with OptFlowCreate a handle of this type will point to a structure that carries all required information for calculating the optical flow on images that have the same properties as specified in the OptFlowCreate call.
Determines the method for generating interpolated motion vectors at locations between the lattice points for which the optical flow is actually evaluated.
The interpolation method will be specified by passing an enum value of type TOptFlowInterpolation as a parameter to OptFlowCalculate or OptFlowCalculateSeq. The interpolation method can be arbitrarily changed between two function calls.