Every time you watch a video, your brain effortlessly decides which parts of the scene are moving and which are still. Computers cannot afford that luxury — they get only a grid of brightness values changing from frame to frame. Optical flow is the name for the apparent velocity field that explains those changes: for every pixel, how far did it shift between two consecutive frames?
The question sounds simple, but it is fundamentally ill-posed. Imagine a perfectly uniform gray disk sliding across a white background. Looking at a single pixel in isolation you cannot tell whether it moved up or sideways — a problem known as the aperture problem. Some additional assumption is always needed to pin down a unique answer.
In 1981, Bruce D. Lucas and Takeo Kanade proposed the cleanest possible assumption: brightness constancy. A surface patch keeps roughly the same brightness as it moves a short distance in a short time. This turns motion estimation into a small system of linear equations — solvable in milliseconds for every pixel in the image.
The Lucas-Kanade method has been refined, extended, and combined with deep-learning pipelines for forty years. It remains the foundation that anyone studying dimensionality reduction or pattern matching in vision should know first.
Comments
Loading comments...