SlideShare una empresa de Scribd logo
1 de 40
Descargar para leer sin conexión
Robert Collins
CSE486, Penn State




                             Lecture 20:
                     The Eight-Point Algorithm

                        Readings T&V 7.3 and 7.4
Robert Collins
CSE486, Penn State
                                      Reminder:
            -0.00310695 -0.0025646       2.96584
    F=      -0.028094
            13.1905
                         -0.00771621
                        -29.2007
                                        56.3813
                                     -9999.79
Robert Collins
CSE486, Penn State
                     Essential/Fundamental Matrix

      The essential and fundamental matrices are 3x3 matrices
      that “encode” the epipolar geometry of two views.

      Motivation: Given a point in one image, multiplying
      by the essential/fundamental matrix will tell us which
      epipolar line to search along in the second view.
Robert Collins
CSE486, Penn State
                       E/F Matrix Summary

    Longuet-Higgins equation



     Epipolar lines:




      Epipoles:



      E vs F: E works in film coords (calibrated cameras)
              F works in pixel coords (uncalibrated cameras)
Robert Collins

               Computing F from Point Matches
CSE486, Penn State




         • Assume that you have m correspondences
         • Each correspondence satisfies:




        • F is a 3x3 matrix (9 entries)
        • Set up a HOMOGENEOUS linear system with 9
          unknowns
Robert Collins
CSE486, Penn State
                     Computing F
Robert Collins
CSE486, Penn State
                     Computing F
Robert Collins
CSE486, Penn State
                      Computing F




    Given m point correspondences…




     Think: how many points do we need?
Robert Collins
CSE486, Penn State
                     How Many Points?

   Unlike a homography, where each point correspondence
   contributes two constraints (rows in the linear system of
   equations), for estimating the essential/fundamental matrix,
   each point only contributes one constraint (row). [because
   the Longuet-Higgins / Epipolar constraint is a scalar eqn.]

   Thus need at least 8 points.

     Hence: The Eight Point algorithm!
Robert Collins
CSE486, Penn State
                     Solving Homogeneous Systems
    Self-study
         Assume that we need the non trivial solution of:




  with m equations and n unknowns, m >= n – 1 and
    rank(A) = n-1

    Since the norm of x is arbitrary, we will look for
    a solution with norm ||x|| = 1
Robert Collins
CSE486, Penn State
                     Least Square solution
    Self-study


    We want Ax as close to 0 as possible and ||x|| =1:
Robert Collins
CSE486, Penn State
                     Optimization with constraints
    Self-study


        Define the following cost:




      This cost is called the LAGRANGIAN cost and
      λ is called the LAGRANGIAN multiplier

        The Lagrangian incorporates the constraints
        into the cost function by introducing extra
        variables.
Robert Collins
CSE486, Penn State
                     Optimization with constraints
    Self-study




    Taking derivatives wrt to x and λ:




        •The first equation is an eigenvector problem
        • The second equation is the original constraint
Robert Collins
CSE486, Penn State
                     Optimization with constraints
    Self-study




      •x is an eigenvector of ATA with eigenvalue λ: eλ




    •We want the eigenvector with smallest eigenvalue
Robert Collins
CSE486, Penn State


    Self-study


           We can find the eigenvectors and
            eigenvalues of ATA by finding the
            Singular Value Decomposition of A
Robert Collins
CSE486, Penn State   Singular Value Decomposition
    Self-study                  (SVD)

    Any m x n matrix A can be written as the product of 3
    matrices:


    Where:
    • U is m x m and its columns are orthonormal vectors
    • V is n x n and its columns are orthonormal vectors
    • D is m x n diagonal and its diagonal elements are called
    the singular values of A, and are such that:
               σ1 ¸ σ2 ¸ … σn ¸ 0
Robert Collins
CSE486, Penn State
                       SVD Properties
    Self-study




  • The columns of U are the eigenvectors of AAT

  • The columns of V are the eigenvectors of ATA

  • The squares of the diagonal elements of D are the

            eigenvalues of AAT and ATA
Robert Collins

                Computing F: The 8 pt Algorithm
CSE486, Penn State




            8   8    8   8    8   8   8   8   8   8   8   8

                             A has rank 8




  •Find eigenvector of ATA with smallest eigenvalue!
Robert Collins
CSE486, Penn State
                     Algorithm EIGHT_POINT

    The input is formed by m point correspondences, m >= 8

         • Construct the m x 9 matrix A
         • Find the SVD of A: A = UDVT
         • The entries of F are the components of the
           column of V corresponding to the least s.v.
Robert Collins
CSE486, Penn State
                     Algorithm EIGHT_POINT

    F must be singular (remember, it is rank 2, since it is
    important for it to have a left and right nullspace,
    i.e. the epipoles). To enforce rank 2 constraint:

        • Find the SVD of F: F = UfDfVfT
        • Set smallest s.v. of F to 0 to create D’f
        • Recompute F: F = UfD’fVfT
Robert Collins
CSE486, Penn State
                        Numerical Details
    Self-study

    • The coordinates of corresponding points can have a wide range
      leading to numerical instabilities.
    • It is better to first normalize them so they have average 0 and
      stddev 1 and denormalize F at the end:




                     F = (T’)-1 Fn T

     Hartley preconditioning algorithm: this was an
     “optional” topic in Lecture 16. Go back and look
     if you want to know more.
Robert Collins
CSE486, Penn State
                        A Practical Issue
         How to “rectify” the images so that any scan-line
         stereo alorithm that works for simple stereo
         can be used to find dense matches (i.e. compute
         a disparity image for every pixel).


                               rectify




      general epipolar lines             parallel epipolar lines
Robert Collins

               Stereo Rectification
CSE486, Penn State




• Image Reprojection
     – reproject image planes onto common
       plane parallel to line between optical
       centers
•   Notice, only focal point of camera really matters

Seitz, UW
Robert Collins
CSE486, Penn State
                     General Idea




                       Apply homography representing a
                       virtual rotation to bring the
                       image planes parallel with the
                       baseline (epipoles go to infinity).
Robert Collins
CSE486, Penn State
                     General Idea, continued
Robert Collins
CSE486, Penn State
                       Image Rectification
                       Method from T&V 7.3.7
         Assuming extrinsic parameters R & T are
          known, compute a 3D rotation that makes
          conjugate epipolar lines collinear and
          parallel to the horizontal image axis

          Remember: a rotation around focal point of camera
          is just a 2D homography in the image!

      Note: this method from the book assumes calibrated cameras
      (we can recover R,T from the E matrix). In a moment, we will
      see a more general approch that uses F matrix.
Robert Collins
CSE486, Penn State
                        Image Rectification

         • Rectification involves two rotations:
              – First rotation sends epipoles to infinity
              – Second rotation makes epipolar lines parallel
         • Rotate the left and right cameras with first R1
               (constructed from translation T)
         • Rotate the right camera with the R matrix
         • Adjust scales in both camera references
Robert Collins
CSE486, Penn State
                     Image Rectification

    Build the rotation:



      with:


      where T is just a unit vector representing the
      epipole in the left image. We know how to
      compute this from E, from last class.
Robert Collins
CSE486, Penn State
                      Image Rectification

    Build the rotation:



      with:




         Verify that this homography maps e1 to [1 0 0]’
Robert Collins
CSE486, Penn State
                      Algorithm Rectification

         • Build the matrix Rrect
         • Set Rl = Rrect and Rr = R.Rrect
         • For each left point pl = (x,y,f)T
              – compute Rl pl = (x’, y’, z’)T
              – Compute p’l = f/z’ (x’, y’ z’)T
         • Repeat above for the right camera with Rr
Robert Collins
CSE486, Penn State
                     Example
Robert Collins
CSE486, Penn State
                      Example

                     Rectified Pair
Robert Collins
CSE486, Penn State
                         A Better Approach
              The traditional method does not work when
              epipoles are in the image (for example, camera
              translating forward)
                                     Good paper: “Simple and
                                     efficient rectification methods
                                     for general motion”, Marc
                                     Pollefeys, R.Koch, L.VanGool,
                                     ICCV99.



                                     General idea: polar
                                     rectification around
                                     the epipoles.
Robert Collins
CSE486, Penn State
                                  Polar rectification
                                  (Pollefeys et al. ICCV’99)

               Polar re-parameterization around epipoles
               Requires only (oriented) epipolar geometry
               Preserve length of epipolar lines
               Choose Δθ so that no pixels are compressed



                     original image                        rectified image




                Works for all relative motions
                Guarantees minimal image size
Robert Collins
CSE486, Penn State
                     polar rectification: example
Robert Collins
CSE486, Penn State
                     polar rectification: example
Robert Collins
CSE486, Penn State
                     Example

                                    epipoles




                     Input images
Robert Collins
CSE486, Penn State
                      Example (cont)

   Rectified images
Robert Collins
CSE486, Penn State
                     Example (cont)
                                      Depth Maps

                                         sparse




                                         interpolated
Robert Collins
CSE486, Penn State
                     Example (cont)




    Depth map in
    pixel coords



                          Views of texture mapped
                          depth surface

Más contenido relacionado

Similar a Lecture20

Similar a Lecture20 (20)

Lecture06
Lecture06Lecture06
Lecture06
 
Further pure mathematics 3 coordinate systems
Further pure mathematics 3  coordinate systemsFurther pure mathematics 3  coordinate systems
Further pure mathematics 3 coordinate systems
 
Computational chemistry
Computational chemistryComputational chemistry
Computational chemistry
 
Lecture5.pptx
Lecture5.pptxLecture5.pptx
Lecture5.pptx
 
Lecture07
Lecture07Lecture07
Lecture07
 
Lecture13
Lecture13Lecture13
Lecture13
 
Lecture05
Lecture05Lecture05
Lecture05
 
GenChem-Quantum Numbers-Atom.ppt
GenChem-Quantum Numbers-Atom.pptGenChem-Quantum Numbers-Atom.ppt
GenChem-Quantum Numbers-Atom.ppt
 
Causality in concurrent systems?
Causality in concurrent systems?Causality in concurrent systems?
Causality in concurrent systems?
 
Lecture31
Lecture31Lecture31
Lecture31
 
7.velocity analysis
7.velocity analysis7.velocity analysis
7.velocity analysis
 
Local binary pattern
Local binary patternLocal binary pattern
Local binary pattern
 
Basissets.pptx
Basissets.pptxBasissets.pptx
Basissets.pptx
 
Mva 06 principal_component_analysis_2010_11
Mva 06 principal_component_analysis_2010_11Mva 06 principal_component_analysis_2010_11
Mva 06 principal_component_analysis_2010_11
 
14485616.ppt
14485616.ppt14485616.ppt
14485616.ppt
 
2A_ROBOT KINEMATICS.pptx
2A_ROBOT KINEMATICS.pptx2A_ROBOT KINEMATICS.pptx
2A_ROBOT KINEMATICS.pptx
 
Ceplerley lecture
Ceplerley lectureCeplerley lecture
Ceplerley lecture
 
Propositional logic(part 2)
Propositional logic(part 2)Propositional logic(part 2)
Propositional logic(part 2)
 
3rd to 8th semester Electronics and Communication Engineering (2010 Scheme) S...
3rd to 8th semester Electronics and Communication Engineering (2010 Scheme) S...3rd to 8th semester Electronics and Communication Engineering (2010 Scheme) S...
3rd to 8th semester Electronics and Communication Engineering (2010 Scheme) S...
 
ELECTRONIC STRUCTURE OF ATOMS AND PERIODICITY (STU).pptx
ELECTRONIC STRUCTURE OF ATOMS AND PERIODICITY (STU).pptxELECTRONIC STRUCTURE OF ATOMS AND PERIODICITY (STU).pptx
ELECTRONIC STRUCTURE OF ATOMS AND PERIODICITY (STU).pptx
 

Más de zukun

My lyn tutorial 2009
My lyn tutorial 2009My lyn tutorial 2009
My lyn tutorial 2009zukun
 
ETHZ CV2012: Tutorial openCV
ETHZ CV2012: Tutorial openCVETHZ CV2012: Tutorial openCV
ETHZ CV2012: Tutorial openCVzukun
 
ETHZ CV2012: Information
ETHZ CV2012: InformationETHZ CV2012: Information
ETHZ CV2012: Informationzukun
 
Siwei lyu: natural image statistics
Siwei lyu: natural image statisticsSiwei lyu: natural image statistics
Siwei lyu: natural image statisticszukun
 
Lecture9 camera calibration
Lecture9 camera calibrationLecture9 camera calibration
Lecture9 camera calibrationzukun
 
Brunelli 2008: template matching techniques in computer vision
Brunelli 2008: template matching techniques in computer visionBrunelli 2008: template matching techniques in computer vision
Brunelli 2008: template matching techniques in computer visionzukun
 
Modern features-part-4-evaluation
Modern features-part-4-evaluationModern features-part-4-evaluation
Modern features-part-4-evaluationzukun
 
Modern features-part-3-software
Modern features-part-3-softwareModern features-part-3-software
Modern features-part-3-softwarezukun
 
Modern features-part-2-descriptors
Modern features-part-2-descriptorsModern features-part-2-descriptors
Modern features-part-2-descriptorszukun
 
Modern features-part-1-detectors
Modern features-part-1-detectorsModern features-part-1-detectors
Modern features-part-1-detectorszukun
 
Modern features-part-0-intro
Modern features-part-0-introModern features-part-0-intro
Modern features-part-0-introzukun
 
Lecture 02 internet video search
Lecture 02 internet video searchLecture 02 internet video search
Lecture 02 internet video searchzukun
 
Lecture 01 internet video search
Lecture 01 internet video searchLecture 01 internet video search
Lecture 01 internet video searchzukun
 
Lecture 03 internet video search
Lecture 03 internet video searchLecture 03 internet video search
Lecture 03 internet video searchzukun
 
Icml2012 tutorial representation_learning
Icml2012 tutorial representation_learningIcml2012 tutorial representation_learning
Icml2012 tutorial representation_learningzukun
 
Advances in discrete energy minimisation for computer vision
Advances in discrete energy minimisation for computer visionAdvances in discrete energy minimisation for computer vision
Advances in discrete energy minimisation for computer visionzukun
 
Gephi tutorial: quick start
Gephi tutorial: quick startGephi tutorial: quick start
Gephi tutorial: quick startzukun
 
EM algorithm and its application in probabilistic latent semantic analysis
EM algorithm and its application in probabilistic latent semantic analysisEM algorithm and its application in probabilistic latent semantic analysis
EM algorithm and its application in probabilistic latent semantic analysiszukun
 
Object recognition with pictorial structures
Object recognition with pictorial structuresObject recognition with pictorial structures
Object recognition with pictorial structureszukun
 
Iccv2011 learning spatiotemporal graphs of human activities
Iccv2011 learning spatiotemporal graphs of human activities Iccv2011 learning spatiotemporal graphs of human activities
Iccv2011 learning spatiotemporal graphs of human activities zukun
 

Más de zukun (20)

My lyn tutorial 2009
My lyn tutorial 2009My lyn tutorial 2009
My lyn tutorial 2009
 
ETHZ CV2012: Tutorial openCV
ETHZ CV2012: Tutorial openCVETHZ CV2012: Tutorial openCV
ETHZ CV2012: Tutorial openCV
 
ETHZ CV2012: Information
ETHZ CV2012: InformationETHZ CV2012: Information
ETHZ CV2012: Information
 
Siwei lyu: natural image statistics
Siwei lyu: natural image statisticsSiwei lyu: natural image statistics
Siwei lyu: natural image statistics
 
Lecture9 camera calibration
Lecture9 camera calibrationLecture9 camera calibration
Lecture9 camera calibration
 
Brunelli 2008: template matching techniques in computer vision
Brunelli 2008: template matching techniques in computer visionBrunelli 2008: template matching techniques in computer vision
Brunelli 2008: template matching techniques in computer vision
 
Modern features-part-4-evaluation
Modern features-part-4-evaluationModern features-part-4-evaluation
Modern features-part-4-evaluation
 
Modern features-part-3-software
Modern features-part-3-softwareModern features-part-3-software
Modern features-part-3-software
 
Modern features-part-2-descriptors
Modern features-part-2-descriptorsModern features-part-2-descriptors
Modern features-part-2-descriptors
 
Modern features-part-1-detectors
Modern features-part-1-detectorsModern features-part-1-detectors
Modern features-part-1-detectors
 
Modern features-part-0-intro
Modern features-part-0-introModern features-part-0-intro
Modern features-part-0-intro
 
Lecture 02 internet video search
Lecture 02 internet video searchLecture 02 internet video search
Lecture 02 internet video search
 
Lecture 01 internet video search
Lecture 01 internet video searchLecture 01 internet video search
Lecture 01 internet video search
 
Lecture 03 internet video search
Lecture 03 internet video searchLecture 03 internet video search
Lecture 03 internet video search
 
Icml2012 tutorial representation_learning
Icml2012 tutorial representation_learningIcml2012 tutorial representation_learning
Icml2012 tutorial representation_learning
 
Advances in discrete energy minimisation for computer vision
Advances in discrete energy minimisation for computer visionAdvances in discrete energy minimisation for computer vision
Advances in discrete energy minimisation for computer vision
 
Gephi tutorial: quick start
Gephi tutorial: quick startGephi tutorial: quick start
Gephi tutorial: quick start
 
EM algorithm and its application in probabilistic latent semantic analysis
EM algorithm and its application in probabilistic latent semantic analysisEM algorithm and its application in probabilistic latent semantic analysis
EM algorithm and its application in probabilistic latent semantic analysis
 
Object recognition with pictorial structures
Object recognition with pictorial structuresObject recognition with pictorial structures
Object recognition with pictorial structures
 
Iccv2011 learning spatiotemporal graphs of human activities
Iccv2011 learning spatiotemporal graphs of human activities Iccv2011 learning spatiotemporal graphs of human activities
Iccv2011 learning spatiotemporal graphs of human activities
 

Lecture20

  • 1. Robert Collins CSE486, Penn State Lecture 20: The Eight-Point Algorithm Readings T&V 7.3 and 7.4
  • 2. Robert Collins CSE486, Penn State Reminder: -0.00310695 -0.0025646 2.96584 F= -0.028094 13.1905 -0.00771621 -29.2007 56.3813 -9999.79
  • 3. Robert Collins CSE486, Penn State Essential/Fundamental Matrix The essential and fundamental matrices are 3x3 matrices that “encode” the epipolar geometry of two views. Motivation: Given a point in one image, multiplying by the essential/fundamental matrix will tell us which epipolar line to search along in the second view.
  • 4. Robert Collins CSE486, Penn State E/F Matrix Summary Longuet-Higgins equation Epipolar lines: Epipoles: E vs F: E works in film coords (calibrated cameras) F works in pixel coords (uncalibrated cameras)
  • 5. Robert Collins Computing F from Point Matches CSE486, Penn State • Assume that you have m correspondences • Each correspondence satisfies: • F is a 3x3 matrix (9 entries) • Set up a HOMOGENEOUS linear system with 9 unknowns
  • 6. Robert Collins CSE486, Penn State Computing F
  • 7. Robert Collins CSE486, Penn State Computing F
  • 8. Robert Collins CSE486, Penn State Computing F Given m point correspondences… Think: how many points do we need?
  • 9. Robert Collins CSE486, Penn State How Many Points? Unlike a homography, where each point correspondence contributes two constraints (rows in the linear system of equations), for estimating the essential/fundamental matrix, each point only contributes one constraint (row). [because the Longuet-Higgins / Epipolar constraint is a scalar eqn.] Thus need at least 8 points. Hence: The Eight Point algorithm!
  • 10. Robert Collins CSE486, Penn State Solving Homogeneous Systems Self-study Assume that we need the non trivial solution of: with m equations and n unknowns, m >= n – 1 and rank(A) = n-1 Since the norm of x is arbitrary, we will look for a solution with norm ||x|| = 1
  • 11. Robert Collins CSE486, Penn State Least Square solution Self-study We want Ax as close to 0 as possible and ||x|| =1:
  • 12. Robert Collins CSE486, Penn State Optimization with constraints Self-study Define the following cost: This cost is called the LAGRANGIAN cost and λ is called the LAGRANGIAN multiplier The Lagrangian incorporates the constraints into the cost function by introducing extra variables.
  • 13. Robert Collins CSE486, Penn State Optimization with constraints Self-study Taking derivatives wrt to x and λ: •The first equation is an eigenvector problem • The second equation is the original constraint
  • 14. Robert Collins CSE486, Penn State Optimization with constraints Self-study •x is an eigenvector of ATA with eigenvalue λ: eλ •We want the eigenvector with smallest eigenvalue
  • 15. Robert Collins CSE486, Penn State Self-study We can find the eigenvectors and eigenvalues of ATA by finding the Singular Value Decomposition of A
  • 16. Robert Collins CSE486, Penn State Singular Value Decomposition Self-study (SVD) Any m x n matrix A can be written as the product of 3 matrices: Where: • U is m x m and its columns are orthonormal vectors • V is n x n and its columns are orthonormal vectors • D is m x n diagonal and its diagonal elements are called the singular values of A, and are such that: σ1 ¸ σ2 ¸ … σn ¸ 0
  • 17. Robert Collins CSE486, Penn State SVD Properties Self-study • The columns of U are the eigenvectors of AAT • The columns of V are the eigenvectors of ATA • The squares of the diagonal elements of D are the eigenvalues of AAT and ATA
  • 18. Robert Collins Computing F: The 8 pt Algorithm CSE486, Penn State 8 8 8 8 8 8 8 8 8 8 8 8 A has rank 8 •Find eigenvector of ATA with smallest eigenvalue!
  • 19. Robert Collins CSE486, Penn State Algorithm EIGHT_POINT The input is formed by m point correspondences, m >= 8 • Construct the m x 9 matrix A • Find the SVD of A: A = UDVT • The entries of F are the components of the column of V corresponding to the least s.v.
  • 20. Robert Collins CSE486, Penn State Algorithm EIGHT_POINT F must be singular (remember, it is rank 2, since it is important for it to have a left and right nullspace, i.e. the epipoles). To enforce rank 2 constraint: • Find the SVD of F: F = UfDfVfT • Set smallest s.v. of F to 0 to create D’f • Recompute F: F = UfD’fVfT
  • 21. Robert Collins CSE486, Penn State Numerical Details Self-study • The coordinates of corresponding points can have a wide range leading to numerical instabilities. • It is better to first normalize them so they have average 0 and stddev 1 and denormalize F at the end: F = (T’)-1 Fn T Hartley preconditioning algorithm: this was an “optional” topic in Lecture 16. Go back and look if you want to know more.
  • 22. Robert Collins CSE486, Penn State A Practical Issue How to “rectify” the images so that any scan-line stereo alorithm that works for simple stereo can be used to find dense matches (i.e. compute a disparity image for every pixel). rectify general epipolar lines parallel epipolar lines
  • 23. Robert Collins Stereo Rectification CSE486, Penn State • Image Reprojection – reproject image planes onto common plane parallel to line between optical centers • Notice, only focal point of camera really matters Seitz, UW
  • 24. Robert Collins CSE486, Penn State General Idea Apply homography representing a virtual rotation to bring the image planes parallel with the baseline (epipoles go to infinity).
  • 25. Robert Collins CSE486, Penn State General Idea, continued
  • 26. Robert Collins CSE486, Penn State Image Rectification Method from T&V 7.3.7 Assuming extrinsic parameters R & T are known, compute a 3D rotation that makes conjugate epipolar lines collinear and parallel to the horizontal image axis Remember: a rotation around focal point of camera is just a 2D homography in the image! Note: this method from the book assumes calibrated cameras (we can recover R,T from the E matrix). In a moment, we will see a more general approch that uses F matrix.
  • 27. Robert Collins CSE486, Penn State Image Rectification • Rectification involves two rotations: – First rotation sends epipoles to infinity – Second rotation makes epipolar lines parallel • Rotate the left and right cameras with first R1 (constructed from translation T) • Rotate the right camera with the R matrix • Adjust scales in both camera references
  • 28. Robert Collins CSE486, Penn State Image Rectification Build the rotation: with: where T is just a unit vector representing the epipole in the left image. We know how to compute this from E, from last class.
  • 29. Robert Collins CSE486, Penn State Image Rectification Build the rotation: with: Verify that this homography maps e1 to [1 0 0]’
  • 30. Robert Collins CSE486, Penn State Algorithm Rectification • Build the matrix Rrect • Set Rl = Rrect and Rr = R.Rrect • For each left point pl = (x,y,f)T – compute Rl pl = (x’, y’, z’)T – Compute p’l = f/z’ (x’, y’ z’)T • Repeat above for the right camera with Rr
  • 32. Robert Collins CSE486, Penn State Example Rectified Pair
  • 33. Robert Collins CSE486, Penn State A Better Approach The traditional method does not work when epipoles are in the image (for example, camera translating forward) Good paper: “Simple and efficient rectification methods for general motion”, Marc Pollefeys, R.Koch, L.VanGool, ICCV99. General idea: polar rectification around the epipoles.
  • 34. Robert Collins CSE486, Penn State Polar rectification (Pollefeys et al. ICCV’99) Polar re-parameterization around epipoles Requires only (oriented) epipolar geometry Preserve length of epipolar lines Choose Δθ so that no pixels are compressed original image rectified image Works for all relative motions Guarantees minimal image size
  • 35. Robert Collins CSE486, Penn State polar rectification: example
  • 36. Robert Collins CSE486, Penn State polar rectification: example
  • 37. Robert Collins CSE486, Penn State Example epipoles Input images
  • 38. Robert Collins CSE486, Penn State Example (cont) Rectified images
  • 39. Robert Collins CSE486, Penn State Example (cont) Depth Maps sparse interpolated
  • 40. Robert Collins CSE486, Penn State Example (cont) Depth map in pixel coords Views of texture mapped depth surface