Puneet Varma (Editor)

Lucas–Kanade method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer vision, the Lucas–Kanade method (pronounced /lukɑs kɑnɑdɪ/) is a widely used differential method for optical flow estimation developed by Bruce D. Lucas and Takeo Kanade. It assumes that the flow is essentially constant in a local neighbourhood of the pixel under consideration, and solves the basic optical flow equations for all the pixels in that neighbourhood, by the least squares criterion.

Contents

By combining information from several nearby pixels, the Lucas–Kanade method can often resolve the inherent ambiguity of the optical flow equation. It is also less sensitive to image noise than point-wise methods. On the other hand, since it is a purely local method, it cannot provide flow information in the interior of uniform regions of the image.

Concept

The Lucas–Kanade method assumes that the displacement of the image contents between two nearby instants (frames) is small and approximately constant within a neighborhood of the point p under consideration. Thus the optical flow equation can be assumed to hold for all pixels within a window centered at p. Namely, the local image flow (velocity) vector ( V x , V y ) must satisfy

I x ( q 1 ) V x + I y ( q 1 ) V y = I t ( q 1 ) I x ( q 2 ) V x + I y ( q 2 ) V y = I t ( q 2 ) I x ( q n ) V x + I y ( q n ) V y = I t ( q n )

where q 1 , q 2 , , q n are the pixels inside the window, and I x ( q i ) , I y ( q i ) , I t ( q i ) are the partial derivatives of the image I with respect to position x, y and time t, evaluated at the point q i and at the current time.

These equations can be written in matrix form A v = b , where

A = [ I x ( q 1 ) I y ( q 1 ) I x ( q 2 ) I y ( q 2 ) I x ( q n ) I y ( q n ) ] v = [ V x V y ] b = [ I t ( q 1 ) I t ( q 2 ) I t ( q n ) ]

This system has more equations than unknowns and thus it is usually over-determined. The Lucas–Kanade method obtains a compromise solution by the least squares principle. Namely, it solves the 2×2 system

A T A v = A T b or v = ( A T A ) 1 A T b

where A T is the transpose of matrix A . That is, it computes

[ V x V y ] = [ i I x ( q i ) 2 i I x ( q i ) I y ( q i ) i I y ( q i ) I x ( q i ) i I y ( q i ) 2 ] 1 [ i I x ( q i ) I t ( q i ) i I y ( q i ) I t ( q i ) ]

where the central matrix in the equation is an Inverse matrix. The sums are running from i=1 to n.

The matrix A T A is often called the structure tensor of the image at the point p.

Weighted window

The plain least squares solution above gives the same importance to all n pixels q i in the window. In practice it is usually better to give more weight to the pixels that are closer to the central pixel p. For that, one uses the weighted version of the least squares equation,

A T W A v = A T W b

or

v = ( A T W A ) 1 A T W b

where W is an n×n diagonal matrix containing the weights W i i = w i to be assigned to the equation of pixel q i . That is, it computes

[ V x V y ] = [ i w i I x ( q i ) 2 i w i I x ( q i ) I y ( q i ) i w i I x ( q i ) I y ( q i ) i w i I y ( q i ) 2 ] 1 [ i w i I x ( q i ) I t ( q i ) i w i I y ( q i ) I t ( q i ) ]

The weight w i is usually set to a Gaussian function of the distance between q i and p.

Use conditions and techniques

In order for equation A T A v = A T b to be solvable, A T A should be invertible, or A T A 's eigenvalues satisfy λ 1 λ 2 > 0 . To avoid noise issue, usually λ 2 is required to not be too small. Also, if λ 1 / λ 2 is too large, this means that the point p is on an edge, and this method suffers from the aperture problem. So for this method to work properly, the condition is that λ 1 and λ 2 are large enough and have similar magnitude. This condition is also the one for Corner detection. This observation shows that one can easily tell which pixel is suitable for the Lucas–Kanade method to work on by inspecting a single image.

One main assumption for this method is that the motion is small (less than 1 pixel between two images for example). If the motion is large and violates this assumption, one technique is to reduce the resolution of images first and then apply the Lucas-Kanade method.

Improvements and extensions

The least-squares approach implicitly assumes that the errors in the image data have a Gaussian distribution with zero mean. If one expects the window to contain a certain percentage of "outliers" (grossly wrong data values, that do not follow the "ordinary" Gaussian error distribution), one may use statistical analysis to detect them, and reduce their weight accordingly.

The Lucas–Kanade method per se can be used only when the image flow vector V x , V y between the two frames is small enough for the differential equation of the optical flow to hold, which is often less than the pixel spacing. When the flow vector may exceed this limit, such as in stereo matching or warped document registration, the Lucas–Kanade method may still be used to refine some coarse estimate of the same, obtained by other means; for example, by extrapolating the flow vectors computed for previous frames, or by running the Lucas-Kanade algorithm on reduced-scale versions of the images. Indeed, the latter method is the basis of the popular Kanade-Lucas-Tomasi (KLT) feature matching algorithm.

A similar technique can be used to compute differential affine deformations of the image contents.

References

Lucas–Kanade method Wikipedia


Similar Topics