Emgu.CV.OpticalFlow.LK C# (CSharp) Метод

LK() публичный статический Метод

Computes flow for every pixel of the first input image using Lucas & Kanade algorithm
public static LK ( Byte>.Image prev, Byte>.Image curr, Size winSize, Single>.Image velx, Single>.Image vely ) : void
prev Byte>.Image First image
curr Byte>.Image Second image
winSize System.Drawing.Size Size of the averaging window used for grouping pixels
velx Single>.Image Horizontal component of the optical flow of the same size as input images
vely Single>.Image Vertical component of the optical flow of the same size as input images
Результат void
        public static void LK(
         Image<Gray, Byte> prev,
         Image<Gray, Byte> curr,
         Size winSize,
         Image<Gray, Single> velx,
         Image<Gray, Single> vely)
        {
            CvInvoke.cvCalcOpticalFlowLK(prev.Ptr, curr.Ptr, winSize, velx, vely);
        }