041510 Structure from Motion Feature Tracking and Optical

  • Slides: 62
Download presentation
04/15/10 Structure from Motion, Feature Tracking, and Optical Flow Computer Vision CS 543 /

04/15/10 Structure from Motion, Feature Tracking, and Optical Flow Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem Many slides adapted from Lana Lazebnik, Silvio Saverse, who in turn adapted slides from Steve Seitz, Rick Szeliski, Martial Hebert, Mark Pollefeys, and others

Last class • Estimating 3 D points and depth – Triangulation from corresponding points

Last class • Estimating 3 D points and depth – Triangulation from corresponding points – Dense stereo • Projective structure from motion

This class • Factorization method for structure from motion • Feature tracking • Optical

This class • Factorization method for structure from motion • Feature tracking • Optical flow (dense tracking)

Structure from motion under orthographic projection 3 D Reconstruction of a Rotating Ping-Pong Ball

Structure from motion under orthographic projection 3 D Reconstruction of a Rotating Ping-Pong Ball • Reasonable choice when • Change in depth of points in scene is much smaller than distance to camera • Cameras do not move towards or away from the scene C. Tomasi and T. Kanade. Shape and motion from image streams under orthography: A factorization method. IJCV, 9(2): 137 -154, November 1992.

Start with an affine camera model • Affine projection is a linear mapping +

Start with an affine camera model • Affine projection is a linear mapping + translation in inhomogeneous coordinates x a 2 a 1 X Does this ever happen? Projection of world origin

Get rid of b by shifting to centroid 2 d normalized point (observed) 3

Get rid of b by shifting to centroid 2 d normalized point (observed) 3 d normalized point Linear (affine) mapping

Suppose we know 3 D points and affine camera parameters … then, we can

Suppose we know 3 D points and affine camera parameters … then, we can compute the observed 2 d positions of each point 3 D Points (3 xn) Camera Parameters (2 mx 3) 2 D Image Points (2 mxn) What rank is the matrix of 2 D points?

What if we instead observe corresponding 2 d image points? Can we recover the

What if we instead observe corresponding 2 d image points? Can we recover the camera parameters and 3 d points? cameras (2 m) points (n)

Factorizing the measurement matrix AX Source: M. Hebert

Factorizing the measurement matrix AX Source: M. Hebert

Factorizing the measurement matrix • Singular value decomposition of D: Source: M. Hebert

Factorizing the measurement matrix • Singular value decomposition of D: Source: M. Hebert

Factorizing the measurement matrix • Singular value decomposition of D: Source: M. Hebert

Factorizing the measurement matrix • Singular value decomposition of D: Source: M. Hebert

Factorizing the measurement matrix • Obtaining a factorization from SVD: Source: M. Hebert

Factorizing the measurement matrix • Obtaining a factorization from SVD: Source: M. Hebert

Factorizing the measurement matrix • Obtaining a factorization from SVD: Source: M. Hebert

Factorizing the measurement matrix • Obtaining a factorization from SVD: Source: M. Hebert

Affine ambiguity • The decomposition is not unique. We get the same D by

Affine ambiguity • The decomposition is not unique. We get the same D by using any 3× 3 matrix C and applying the transformations A → AC, X →C-1 X • That is because we have only an affine transformation and we have not enforced any Euclidean constraints (like forcing the image axes to be perpendicular, for example) Source: M. Hebert

Eliminating the affine ambiguity • Orthographic: image axes are perpendicular and of unit length

Eliminating the affine ambiguity • Orthographic: image axes are perpendicular and of unit length a 1 · a 2 = 0 x |a 1|2 = |a 2|2 = 1 a 2 a 1 X Source: M. Hebert

Solve for orthographic constraints Three equations for each image i where • Solve for

Solve for orthographic constraints Three equations for each image i where • Solve for L = CCT • Recover C from L by Cholesky decomposition: L = CCT ~ ~ -1 • Update A and X: A = AC, X = C X

Algorithm summary • Given: m images and n tracked features xij • For each

Algorithm summary • Given: m images and n tracked features xij • For each image i, center the feature coordinates • Construct a 2 m × n measurement matrix D: – Column j contains the projection of point j in all views – Row i contains one coordinate of the projections of all the n points in image i • Factorize D: – – Compute SVD: D = U W VT Create U 3 by taking the first 3 columns of U Create V 3 by taking the first 3 columns of V Create W 3 by taking the upper left 3 × 3 block of W • Create the motion and shape matrices: – M = U 3 W 3½ and S = W 3½ V 3 T (or M = U 3 and S = W 3 V 3 T) • Eliminate affine ambiguity Source: M. Hebert

Dealing with missing data • So far, we have assumed that all points are

Dealing with missing data • So far, we have assumed that all points are visible in all views • In reality, the measurement matrix typically looks something like this: cameras points One solution: – solve using a dense submatrix of visible points (as in last lecture) – Iteratively add new cameras

Reconstruction results C. Tomasi and T. Kanade. Shape and motion from image streams under

Reconstruction results C. Tomasi and T. Kanade. Shape and motion from image streams under orthography: A factorization method. IJCV, 9(2): 137 -154, November 1992.

Recovering motion • Feature-tracking – Extract visual features (corners, textured areas) and “track” them

Recovering motion • Feature-tracking – Extract visual features (corners, textured areas) and “track” them over multiple frames • Optical flow – Recover image motion at each pixel from spatio-temporal image brightness variations (optical flow) Two problems, one registration method B. Lucas and T. Kanade. An iterative image registration technique with an application to stereo vision. In Proceedings of the International Joint Conference on Artificial Intelligence, pp. 674– 679, 1981.

Feature tracking • Last problem required corresponding points in images • If motion is

Feature tracking • Last problem required corresponding points in images • If motion is small, tracking is an easy way to get them

Feature tracking • Challenges – Need good features to track – Points may appear

Feature tracking • Challenges – Need good features to track – Points may appear or disappear: need to be able to add/delete tracked points – Some points may change appearance over time (e. g. , due to rotation, moving into shadows, etc. ) – Drift: small errors can accumulate if appearance model is updated

Feature tracking I(x, y, t– 1) I(x, y, t) • Given two subsequent frames,

Feature tracking I(x, y, t– 1) I(x, y, t) • Given two subsequent frames, estimate the point translation • Key assumptions of Lucas-Kanade Tracker • Brightness constancy: projection of the same point looks the same in every frame • Small motion: points do not move very far • Spatial coherence: points move like their neighbors

The brightness constancy constraint I(x, y, t– 1) I(x, y, t) • Brightness Constancy

The brightness constancy constraint I(x, y, t– 1) I(x, y, t) • Brightness Constancy Equation: Linearizing right hand side using Taylor expansion: Image derivative along x Hence,

The brightness constancy constraint Can we use this equation to recover image motion (u,

The brightness constancy constraint Can we use this equation to recover image motion (u, v) at each pixel? • How many equations and unknowns per pixel? • One equation (this is a scalar equation!), two unknowns (u, v) The component of the motion perpendicular to the gradient (i. e. , parallel to the edge) cannot be measured If (u, v ) satisfies the equation, so does (u+u’, v+v’ ) if gradient (u, v) (u’, v’) (u+u’, v+v’) edge

The aperture problem Actual motion

The aperture problem Actual motion

The aperture problem Perceived motion

The aperture problem Perceived motion

The barber pole illusion http: //en. wikipedia. org/wiki/Barberpole_illusion

The barber pole illusion http: //en. wikipedia. org/wiki/Barberpole_illusion

The barber pole illusion http: //en. wikipedia. org/wiki/Barberpole_illusion

The barber pole illusion http: //en. wikipedia. org/wiki/Barberpole_illusion

Solving the ambiguity… B. Lucas and T. Kanade. An iterative image registration technique with

Solving the ambiguity… B. Lucas and T. Kanade. An iterative image registration technique with an application to stereo vision. In Proceedings of the International Joint Conference on Artificial Intelligence, pp. 674– 679, 1981. • How to get more equations for a pixel? • Spatial coherence constraint • Assume the pixel’s neighbors have the same (u, v) – If we use a 5 x 5 window, that gives us 25 equations per pixel

Solving the ambiguity… • Least squares problem:

Solving the ambiguity… • Least squares problem:

Matching patches across images • Overconstrained linear system Least squares solution for d given

Matching patches across images • Overconstrained linear system Least squares solution for d given by The summations are over all pixels in the K x K window

Conditions for solvability – Optimal (u, v) satisfies Lucas-Kanade equation When is This Solvable?

Conditions for solvability – Optimal (u, v) satisfies Lucas-Kanade equation When is This Solvable? • ATA should be invertible • ATA should not be too small due to noise – eigenvalues 1 and 2 of ATA should not be too small • ATA should be well-conditioned – 1/ 2 should not be too large ( 1 = larger eigenvalue) Does this remind you of anything? Criteria for Harris corner detector

Edge – gradients very large or very small – large 1, small 2

Edge – gradients very large or very small – large 1, small 2

Low-texture region – gradients have small magnitude – small 1, small 2

Low-texture region – gradients have small magnitude – small 1, small 2

High-texture region – gradients are different, large magnitudes – large 1, large 2

High-texture region – gradients are different, large magnitudes – large 1, large 2

The aperture problem resolved Actual motion

The aperture problem resolved Actual motion

The aperture problem resolved Perceived motion

The aperture problem resolved Perceived motion

Dealing with larger movements: Iterative refinement 1. Initialize (u, v) = (0, 0) 2.

Dealing with larger movements: Iterative refinement 1. Initialize (u, v) = (0, 0) 2. Compute (u, v) by 2 nd moment matrix for feature patch in first image It = I(x, y, t-1) - I(x+u, y+v, t) displacement 3. Shift window by (u, v) 4. Repeat steps 2 -3 until small change • Only It changes per iteration

Dealing with larger movements: coarse-tofine registration run iterative L-K upsample run iterative L-K. .

Dealing with larger movements: coarse-tofine registration run iterative L-K upsample run iterative L-K. . . image J 1 Gaussian pyramid of image 1 (t) image I 2 image Gaussian pyramid of image 2 (t+1)

Shi-Tomasi feature tracker • Find good features using eigenvalues of secondmoment matrix – Key

Shi-Tomasi feature tracker • Find good features using eigenvalues of secondmoment matrix – Key idea: “good” features to track are the ones whose motion can be estimated reliably • From frame to frame, track with Lucas-Kanade – This amounts to assuming a translation model for frame -to-frame feature movement • Check consistency of tracks by affine registration to the first observed instance of the feature – Affine model is more accurate for larger displacements – Comparing to the first frame helps to minimize drift J. Shi and C. Tomasi. Good Features to Track. CVPR 1994.

Tracking example J. Shi and C. Tomasi. Good Features to Track. CVPR 1994.

Tracking example J. Shi and C. Tomasi. Good Features to Track. CVPR 1994.

Summary of KLT tracking • Find a good point to track (harris corner) •

Summary of KLT tracking • Find a good point to track (harris corner) • Use intensity second moment matrix and difference across frames to find displacement • Iterate and use coarse-to-fine search to deal with larger movements • When creating long tracks, check appearance of registered patch against appearance of initial patch to find points that have drifted

Optical flow Vector field function of the spatio-temporal image brightness variations Picture courtesy of

Optical flow Vector field function of the spatio-temporal image brightness variations Picture courtesy of Selim Temizer - Learning and Intelligent Systems (LIS) Group, MIT

Motion and perceptual organization • Sometimes, motion is the only cue

Motion and perceptual organization • Sometimes, motion is the only cue

Motion and perceptual organization • Even “impoverished” motion data can evoke a strong percept

Motion and perceptual organization • Even “impoverished” motion data can evoke a strong percept G. Johansson, “Visual Perception of Biological Motion and a Model For Its Analysis", Perception and Psychophysics 14, 201 -211, 1973.

Motion and perceptual organization • Even “impoverished” motion data can evoke a strong percept

Motion and perceptual organization • Even “impoverished” motion data can evoke a strong percept G. Johansson, “Visual Perception of Biological Motion and a Model For Its Analysis", Perception and Psychophysics 14, 201 -211, 1973.

Uses of motion • • • Estimating 3 D structure Segmenting objects based on

Uses of motion • • • Estimating 3 D structure Segmenting objects based on motion cues Learning and tracking dynamical models Recognizing events and activities Improving video quality (motion stabilization)

Motion field • The motion field is the projection of the 3 D scene

Motion field • The motion field is the projection of the 3 D scene motion into the image What would the motion field of a non-rotating ball moving towards the camera look like?

Optical flow • Definition: optical flow is the apparent motion of brightness patterns in

Optical flow • Definition: optical flow is the apparent motion of brightness patterns in the image • Ideally, optical flow would be the same as the motion field • Have to be careful: apparent motion can be caused by lighting changes without any actual motion – Think of a uniform rotating sphere under fixed lighting vs. a stationary sphere under moving illumination

Lucas-Kanade Optical Flow • Same as Lucas-Kanade feature tracking, but for each pixel –

Lucas-Kanade Optical Flow • Same as Lucas-Kanade feature tracking, but for each pixel – As we saw, works better for textured pixels • Operations can be done frame at a time, rather than pixel by pixel – Efficient

Iterative Refinement • Iterative Lukas-Kanade Algorithm 1. Estimate velocity at each pixel by solving

Iterative Refinement • Iterative Lukas-Kanade Algorithm 1. Estimate velocity at each pixel by solving Lucas. Kanade equations 2. Warp I(t-1) towards I(t) using the estimated flow field - use image warping techniques 3. Repeat until convergence 60 * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Coarse-to-fine optical flow estimation run iterative L-K warp & upsample run iterative L-K. .

Coarse-to-fine optical flow estimation run iterative L-K warp & upsample run iterative L-K. . . image J 1 Gaussian pyramid of image 1 (t) image I 2 image Gaussian pyramid of image 2 (t+1)

Example * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Example * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Multi-resolution registration * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Multi-resolution registration * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Optical Flow Results * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Optical Flow Results * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Optical Flow Results * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Optical Flow Results * From Khurram Hassan-Shafique CAP 5415 Computer Vision 2003

Errors in Lucas-Kanade • The motion is large – Possible Fix: Descriptor matching •

Errors in Lucas-Kanade • The motion is large – Possible Fix: Descriptor matching • A point does not move like its neighbors – Possible Fix: Motion segmentation • Brightness constancy does not hold – Possible Fix: Gradient constancy

State-of-the-art optical flow Start with something similar to Lucas-Kanade + gradient constancy + energy

State-of-the-art optical flow Start with something similar to Lucas-Kanade + gradient constancy + energy minimization with smoothing term + region matching + descriptor matching (long-range) Large displacement optical flow, Brox et al. , CVPR 2009

Stereo vs. Optical Flow • Similar dense matching procedures • Why don’t we typically

Stereo vs. Optical Flow • Similar dense matching procedures • Why don’t we typically use epipolar constraints for optical flow? B. Lucas and T. Kanade. An iterative image registration technique with an application to stereo vision. In Proceedings of the International Joint Conference on Artificial Intelligence, pp. 674– 679, 1981.

Summary • Major contributions from Lucas, Tomasi, Kanade – Structure from motion – Tracking

Summary • Major contributions from Lucas, Tomasi, Kanade – Structure from motion – Tracking feature points – Optical flow • Key ideas – Factorization for special case of SFM – By assuming brightness constancy, truncated Taylor expansion leads to simple and fast patch matching across frames – Coarse-to-fine registration

Next class • Kalman filter tracking (with David)

Next class • Kalman filter tracking (with David)