Yes, you are absolutely correct. The Optical Flow Constraint Equation (OFCE), expressed as , provides only one equation at each pixel , while there are two unknowns: the horizontal optical flow component, , and the vertical optical flow component, .

Here’s a breakdown:

  • Variables:

    • : The partial derivative of image intensity with respect to . (Spatial Gradient in x direction)
    • : The partial derivative of image intensity with respect to . (Spatial Gradient in y direction)
    • : The partial derivative of image intensity with respect to time . (Temporal Gradient)
    • : The horizontal component of the optical flow vector at the pixel.
    • : The vertical component of the optical flow vector at the pixel.
  • Underconstrained Nature: Because we have two unknowns ( and ) and only one equation, we cannot uniquely determine the values of and at a single pixel based solely on the OFCE. There are infinitely many combinations of and that could satisfy the equation. This is explicitly mentioned on slides 6 and 7. This situation is referred to as an underconstrained or ill-posed problem.

  • Geometric Interpretation (Slide 7): The OFCE defines a line in the plane. Any point (, ) on this line satisfies the brightness constancy constraint at that pixel. The slope of this line is determined by the image gradients ( and ), and its position is influenced by the temporal gradient (). The equation of that line can be written as:

v = -\frac{I_x}{I_y}u - \frac{I_t}{I_y} $$ provided $I_y \neq 0$. * **Aperture Problem:** This underconstrained nature is directly related to the aperture problem (Slide 8). When observing motion through a small aperture (or locally within an image), it's impossible to determine the true motion direction unambiguously. Only the component of motion *perpendicular* to the edge (i.e., along the image gradient) can be estimated reliably. * **Solutions:** To overcome this underconstrained problem, additional constraints or assumptions are necessary. The Horn-Shunck and Lucas-Kanade methods, described in the slides, introduce such constraints: * **Horn-Shunck (Slides 9-27):** Imposes a *global smoothness constraint*, assuming that the optical flow field varies smoothly across the image. * **Lucas-Kanade (Slides 31-45):** Assumes that the optical flow is *locally constant* within a small neighborhood around each pixel. In summary, your statement is correct: the OFCE by itself is underconstrained, requiring additional constraints to solve for the optical flow.