SlideShare une entreprise Scribd logo
1  sur  39
Télécharger pour lire hors ligne
Robert Collins
CSE486, Penn State




                        Lecture 13:
                     Camera Projection II
                     Reading: T&V Section 2.4
Robert Collins
CSE486, Penn State
                     Recall: Imaging Geometry

                                          W
                Object of Interest
                in World Coordinate
                System (U,V,W)
                                                V
                                      U
Robert Collins
CSE486, Penn State
                         Imaging Geometry

                               Camera Coordinate
            Y                  System (X,Y,Z).

   X            Z
                               • Z is optic axis
                     f         • Image plane located f units
                                    out along optic axis
                               • f is called focal length
Robert Collins
CSE486, Penn State
                               Imaging Geometry

                                                W
            Y                  y
   X            Z          x

                                                            V
                                           U

                     Forward Projection onto image plane.
                     3D (X,Y,Z) projected to 2D (x,y)
Robert Collins
CSE486, Penn State
                             Imaging Geometry

                                                   W
            Y                y
   X            Z        x

                                                                V
                     u                       U


   v                             Our image gets digitized
                                 into pixel coordinates (u,v)
Robert Collins
CSE486, Penn State
                             Imaging Geometry
   Camera      Image (film)                    World
   Coordinates Coordinates                      W
                                               Coordinates
            Y                 y
   X            Z        x

                                                         V
                     u                     U


   v                         Pixel
                             Coordinates
Robert Collins
CSE486, Penn State
                       Forward Projection

    World             Camera         Film         Pixel
    Coords            Coords         Coords       Coords
      U                  X              x                u
      V                  Y              y                v
      W                  Z

              We want a mathematical model to describe
              how 3D World points get projected into 2D
              Pixel coordinates.

             Our goal: describe this sequence of
             transformations by a big matrix equation!
Robert Collins
CSE486, Penn State
                     Intrinsic Camera Parameters

    World               Camera     Film        Pixel
    Coords              Coords     Coords      Coords
      U                    X          x            u
      V                    Y          y            v
      W                    Z


                                   Affine Transformation
Robert Collins
CSE486, Penn State
                     Intrinsic parameters

         • Describes coordinate transformation
           between film coordinates (projected image)
           and pixel array
         • Film cameras: scanning/digitization
         • CCD cameras: grid of photosensors




                                   still in T&V section 2.4
Robert Collins
CSE486, Penn State
                     Intrinsic parameters (offsets)
              film plane
                                                  pixel array
              (projected image)
                  ox                      (0,0)       u (col)

           oy                    x     v (row)
                     (0,0)

                             y

                            X                Y
                      u  f    ox     v  f    oy
                            Z                Z
              ox and oy called image center or principle point
Robert Collins
CSE486, Penn State
                               Intrinsic parameters
    sometimes one or more coordinate axes are flipped (e.g. T&V section 2.4)

                film plane                                pixel array
                   ox                             (0,0)       u (col)

           oy              y
                                               v (row)
                     x
                                      (0,0)


                                 X                          Y
                     u        f    ox       v          f    oy
                                 Z                          Z
Robert Collins
CSE486, Penn State
                     Intrinsic parameters (scales)
  sampling determines how many rows/cols in the image

    film                       scanning
                               resolution
                                                        pixel array

                                                        C cols x R rows
  CCD
                             analog


                                  resample
Robert Collins
CSE486, Penn State
                        Effective Scales: sx and sy


                         1  X           1  Y
                     u s f    ox   v  f    oy
                         x  Z           sy Z


       Note, since we have different scale factors in x and y,
       we don’t necessarily have square pixels!

       Aspect ratio is sy / sx




O.Camps, PSU
Robert Collins
CSE486, Penn State
                     Perspective projection matrix
   Adding the intrinsic parameters into the
   perspective projection matrix:
                                                        X 
                      x'  f / s x       0    ox   0  
                      y '   0      f / sy   oy    Y 
                                                     0
                                                     Z 
                      z '  0
                                      0      1    0  
                                                       1
                                                         
   To verify:
                x’
             u                        1 X                 1Y
                z’                u s f    ox       v  f    oy
                y’                    x  Z               sy Z
             v
                z’
O.Camps, PSU
Robert Collins
CSE486, Penn State
                               Note:
    Sometimes, the image and the camera coordinate systems
    have opposite orientations: [the book does it this way]

        X                                                              X 
      f    ( u  o x ) s x    x'  f / s x      0        ox   0  
        Z                       y '   0        f / sy    oy    Y 
                                                                    0
        Y                                                           Z 
      f  ( v  o y )s y       z'  0
                                                  0        1     0  
                                                                      1
        Z                                                               
Robert Collins
CSE486, Penn State
                                    Note 2
            In general, I like to think of the conversion as
            a separate 2D affine transformation from film
            coords (x,y) to pixel coordinates (u,v):
                                                  X 
        u’                  ' 13
                     a11 a12 xa   f    0   0 0  
        v’                  ya   0
                     a21 a22 ' 23        f      Y 
                                             0 0
        w’
                                               Z 
                     0 0 z1
                            '  0
                                       0   1 0  
                                                 1
                                                   
                         Maff            Mproj

                     u = Mint PC = Maff Mproj PC
Robert Collins
CSE486, Penn State
                                Huh?

           Did he just say it was “a fine” transformation?


           No, it was “affine” transformation, a type of
           2D to 2D mapping defined by 6 parameters.

           More on this in a moment...
Robert Collins
CSE486, Penn State
                     Summary : Forward Projection
       World                Camera             Film            Pixel
       Coords               Coords             Coords          Coords
         U                    X                  x                u
         V           Mext     Y      Mproj              Maff
                                                 y                v
         W                    Z

          U          Mext     X              Mint                 u
          V                   Y                                   v
          W                   Z

          U                                                       u
                                     M
          V                  m11 m12 m13 m14                      v
          W                  m21 m22 m23 m24
                             m31 m31 m33 m34
Robert Collins
CSE486, Penn State
                     Summary: Projection Equation
                       Film plane   Perspective
                                                  World to camera
                       to pixels    projection




                        Maff           Mproj         Mext

                                Mint

                                        M
Robert Collins
CSE486, Penn State




                          Lecture 13/14:
                     Intro to Image Mappings
Robert Collins
CSE486, Penn State
                     Image Mappings
                       Overview




from R.Szeliski
Robert Collins
CSE486, Penn State
                     Geometric Image Mappings
                                 Geometric
                 image         transformation   transformed image



            (x,y)
                                                         (x’,y’)




                         x’ = f(x, y, {parameters})
                         y’ = g(x, y, {parameters})
Robert Collins
CSE486, Penn State
                         Linear Transformations
                          (Can be written as matrices)
                                     Geometric
                 image             transformation   transformed image



            (x,y)
                                                             (x’,y’)




                          x’                           x
                          y’   =     M(params)         y
                          1                            1
Robert Collins
CSE486, Penn State
                                Translation
             y                           y’
                             transform
             1

                                         ty

             0
                 0     1        x                 tx    x’




                 equations                    matrix form
Robert Collins
CSE486, Penn State
                                    Scale
             y                           y’
                             transform    S

             1



             0                           0
                 0     1        x             0          S   x’




                 equations                        matrix form
Robert Collins
CSE486, Penn State
                                    Rotation
             y                           y’
                             transform
             1
                                              




                                              )
             0
                 0     1        x                       x’




                 equations                    matrix form
Robert Collins
CSE486, Penn State
                             Euclidean (Rigid)
             y                           y’
                             transform             




                                                  )
             1
                                         ty

             0
                 0     1        x                 tx    x’




                 equations                    matrix form
Robert Collins
CSE486, Penn State
                            Partitioned Matrices




http://planetmath.org/encyclopedia/PartitionedMatrix.html
Robert Collins
CSE486, Penn State
                     Partitioned Matrices




               2x1     2x2   2x1   2x1


               1x1     1x2   1x1   1x1   matrix form



                                         equation form
Robert Collins

            Another Example (from last time)
CSE486, Penn State




                     X          r11 r12 r13 tx     U
                     Y          r21 r22 r23 ty     V
                     Z          r31 r32 r33 tz     W
                     1          0 0 0 1            1
                     3x1         3x3   3x1   3x1
                     PC          R     T     PW
                     1x1    =    1x3   1x1   1x1
                     1           0     1     1


                         PC = R P W + T
Robert Collins
CSE486, Penn State
                     Similarity (scaled Euclidean)
             y                           y’                  S
                             transform             




                                                  )
             1
                                         ty

             0
                 0     1        x                 tx    x’




                 equations                    matrix form
Robert Collins
CSE486, Penn State
                                    Affine
             y                           y’
                             transform
             1



             0
                 0     1        x                       x’




                 equations                    matrix form
Robert Collins
CSE486, Penn State
                                    Projective
             y                           y’
                             transform
             1



             0
                 0     1        x                       x’
                                              Note!



                 equations                    matrix form
Robert Collins

                Summary of 2D Transformations
CSE486, Penn State
Robert Collins

                Summary of 2D Transformations
CSE486, Penn State




 Euclidean
Robert Collins

                Summary of 2D Transformations
CSE486, Penn State




 Similarity
Robert Collins

                Summary of 2D Transformations
CSE486, Penn State




     Affine
Robert Collins

                Summary of 2D Transformations
CSE486, Penn State




 Projective
Robert Collins
CSE486, Penn State
                  Summary of 2D Transformations




from R.Szeliski

Contenu connexe

Similaire à Lecture13

Lecture23
Lecture23Lecture23
Lecture23zukun
 
Lecture22
Lecture22Lecture22
Lecture22zukun
 
Lecture17
Lecture17Lecture17
Lecture17zukun
 
Lecture20
Lecture20Lecture20
Lecture20zukun
 
Lecture30
Lecture30Lecture30
Lecture30zukun
 
Lecture30
Lecture30Lecture30
Lecture30zukun
 
Lecture21
Lecture21Lecture21
Lecture21zukun
 
Lecture21
Lecture21Lecture21
Lecture21zukun
 
Lecture9 camera calibration
Lecture9 camera calibrationLecture9 camera calibration
Lecture9 camera calibrationzukun
 
Lecture19
Lecture19Lecture19
Lecture19zukun
 
Lecture14
Lecture14Lecture14
Lecture14zukun
 
Lecture03
Lecture03Lecture03
Lecture03zukun
 
Camera parameters
Camera parametersCamera parameters
Camera parametersTheYacine
 

Similaire à Lecture13 (14)

Lecture23
Lecture23Lecture23
Lecture23
 
Lecture22
Lecture22Lecture22
Lecture22
 
Lecture17
Lecture17Lecture17
Lecture17
 
Lecture20
Lecture20Lecture20
Lecture20
 
Lecture30
Lecture30Lecture30
Lecture30
 
Lecture30
Lecture30Lecture30
Lecture30
 
Lecture21
Lecture21Lecture21
Lecture21
 
Lecture21
Lecture21Lecture21
Lecture21
 
Lecture9 camera calibration
Lecture9 camera calibrationLecture9 camera calibration
Lecture9 camera calibration
 
Lecture9
Lecture9Lecture9
Lecture9
 
Lecture19
Lecture19Lecture19
Lecture19
 
Lecture14
Lecture14Lecture14
Lecture14
 
Lecture03
Lecture03Lecture03
Lecture03
 
Camera parameters
Camera parametersCamera parameters
Camera parameters
 

Plus de zukun

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
 
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
 
Icml2012 learning hierarchies of invariant features
Icml2012 learning hierarchies of invariant featuresIcml2012 learning hierarchies of invariant features
Icml2012 learning hierarchies of invariant featureszukun
 
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...zukun
 
Quoc le tera-scale deep learning
Quoc le   tera-scale deep learningQuoc le   tera-scale deep learning
Quoc le tera-scale deep learningzukun
 

Plus de zukun (20)

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
 
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
 
Icml2012 learning hierarchies of invariant features
Icml2012 learning hierarchies of invariant featuresIcml2012 learning hierarchies of invariant features
Icml2012 learning hierarchies of invariant features
 
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...
ECCV2010: Modeling Temporal Structure of Decomposable Motion Segments for Act...
 
Quoc le tera-scale deep learning
Quoc le   tera-scale deep learningQuoc le   tera-scale deep learning
Quoc le tera-scale deep learning
 

Lecture13

  • 1. Robert Collins CSE486, Penn State Lecture 13: Camera Projection II Reading: T&V Section 2.4
  • 2. Robert Collins CSE486, Penn State Recall: Imaging Geometry W Object of Interest in World Coordinate System (U,V,W) V U
  • 3. Robert Collins CSE486, Penn State Imaging Geometry Camera Coordinate Y System (X,Y,Z). X Z • Z is optic axis f • Image plane located f units out along optic axis • f is called focal length
  • 4. Robert Collins CSE486, Penn State Imaging Geometry W Y y X Z x V U Forward Projection onto image plane. 3D (X,Y,Z) projected to 2D (x,y)
  • 5. Robert Collins CSE486, Penn State Imaging Geometry W Y y X Z x V u U v Our image gets digitized into pixel coordinates (u,v)
  • 6. Robert Collins CSE486, Penn State Imaging Geometry Camera Image (film) World Coordinates Coordinates W Coordinates Y y X Z x V u U v Pixel Coordinates
  • 7. Robert Collins CSE486, Penn State Forward Projection World Camera Film Pixel Coords Coords Coords Coords U X x u V Y y v W Z We want a mathematical model to describe how 3D World points get projected into 2D Pixel coordinates. Our goal: describe this sequence of transformations by a big matrix equation!
  • 8. Robert Collins CSE486, Penn State Intrinsic Camera Parameters World Camera Film Pixel Coords Coords Coords Coords U X x u V Y y v W Z Affine Transformation
  • 9. Robert Collins CSE486, Penn State Intrinsic parameters • Describes coordinate transformation between film coordinates (projected image) and pixel array • Film cameras: scanning/digitization • CCD cameras: grid of photosensors still in T&V section 2.4
  • 10. Robert Collins CSE486, Penn State Intrinsic parameters (offsets) film plane pixel array (projected image) ox (0,0) u (col) oy x v (row) (0,0) y X Y u  f  ox v  f  oy Z Z ox and oy called image center or principle point
  • 11. Robert Collins CSE486, Penn State Intrinsic parameters sometimes one or more coordinate axes are flipped (e.g. T&V section 2.4) film plane pixel array ox (0,0) u (col) oy y v (row) x (0,0) X Y u  f  ox v  f  oy Z Z
  • 12. Robert Collins CSE486, Penn State Intrinsic parameters (scales) sampling determines how many rows/cols in the image film scanning resolution pixel array C cols x R rows CCD analog resample
  • 13. Robert Collins CSE486, Penn State Effective Scales: sx and sy 1 X 1 Y u s f  ox v  f  oy x Z sy Z Note, since we have different scale factors in x and y, we don’t necessarily have square pixels! Aspect ratio is sy / sx O.Camps, PSU
  • 14. Robert Collins CSE486, Penn State Perspective projection matrix Adding the intrinsic parameters into the perspective projection matrix: X   x'  f / s x 0 ox 0    y '   0 f / sy oy Y  0    Z   z '  0    0 1 0    1   To verify: x’ u 1 X 1Y z’ u s f  ox v  f  oy y’ x Z sy Z v z’ O.Camps, PSU
  • 15. Robert Collins CSE486, Penn State Note: Sometimes, the image and the camera coordinate systems have opposite orientations: [the book does it this way] X X  f  ( u  o x ) s x  x'  f / s x 0  ox 0   Z  y '   0  f / sy  oy Y  0 Y    Z  f  ( v  o y )s y  z'  0    0 1 0    1 Z  
  • 16. Robert Collins CSE486, Penn State Note 2 In general, I like to think of the conversion as a separate 2D affine transformation from film coords (x,y) to pixel coordinates (u,v): X  u’  ' 13 a11 a12 xa f 0 0 0   v’  ya   0 a21 a22 ' 23 f Y  0 0 w’    Z  0 0 z1  '  0   0 1 0    1   Maff Mproj u = Mint PC = Maff Mproj PC
  • 17. Robert Collins CSE486, Penn State Huh? Did he just say it was “a fine” transformation? No, it was “affine” transformation, a type of 2D to 2D mapping defined by 6 parameters. More on this in a moment...
  • 18. Robert Collins CSE486, Penn State Summary : Forward Projection World Camera Film Pixel Coords Coords Coords Coords U X x u V Mext Y Mproj Maff y v W Z U Mext X Mint u V Y v W Z U u M V m11 m12 m13 m14 v W m21 m22 m23 m24 m31 m31 m33 m34
  • 19. Robert Collins CSE486, Penn State Summary: Projection Equation Film plane Perspective World to camera to pixels projection Maff Mproj Mext Mint M
  • 20. Robert Collins CSE486, Penn State Lecture 13/14: Intro to Image Mappings
  • 21. Robert Collins CSE486, Penn State Image Mappings Overview from R.Szeliski
  • 22. Robert Collins CSE486, Penn State Geometric Image Mappings Geometric image transformation transformed image (x,y) (x’,y’) x’ = f(x, y, {parameters}) y’ = g(x, y, {parameters})
  • 23. Robert Collins CSE486, Penn State Linear Transformations (Can be written as matrices) Geometric image transformation transformed image (x,y) (x’,y’) x’ x y’ = M(params) y 1 1
  • 24. Robert Collins CSE486, Penn State Translation y y’ transform 1 ty 0 0 1 x tx x’ equations matrix form
  • 25. Robert Collins CSE486, Penn State Scale y y’ transform S 1 0 0 0 1 x 0 S x’ equations matrix form
  • 26. Robert Collins CSE486, Penn State Rotation y y’ transform 1  ) 0 0 1 x x’ equations matrix form
  • 27. Robert Collins CSE486, Penn State Euclidean (Rigid) y y’ transform  ) 1 ty 0 0 1 x tx x’ equations matrix form
  • 28. Robert Collins CSE486, Penn State Partitioned Matrices http://planetmath.org/encyclopedia/PartitionedMatrix.html
  • 29. Robert Collins CSE486, Penn State Partitioned Matrices 2x1 2x2 2x1 2x1 1x1 1x2 1x1 1x1 matrix form equation form
  • 30. Robert Collins Another Example (from last time) CSE486, Penn State X r11 r12 r13 tx U Y r21 r22 r23 ty V Z r31 r32 r33 tz W 1 0 0 0 1 1 3x1 3x3 3x1 3x1 PC R T PW 1x1 = 1x3 1x1 1x1 1 0 1 1 PC = R P W + T
  • 31. Robert Collins CSE486, Penn State Similarity (scaled Euclidean) y y’ S transform  ) 1 ty 0 0 1 x tx x’ equations matrix form
  • 32. Robert Collins CSE486, Penn State Affine y y’ transform 1 0 0 1 x x’ equations matrix form
  • 33. Robert Collins CSE486, Penn State Projective y y’ transform 1 0 0 1 x x’ Note! equations matrix form
  • 34. Robert Collins Summary of 2D Transformations CSE486, Penn State
  • 35. Robert Collins Summary of 2D Transformations CSE486, Penn State Euclidean
  • 36. Robert Collins Summary of 2D Transformations CSE486, Penn State Similarity
  • 37. Robert Collins Summary of 2D Transformations CSE486, Penn State Affine
  • 38. Robert Collins Summary of 2D Transformations CSE486, Penn State Projective
  • 39. Robert Collins CSE486, Penn State Summary of 2D Transformations from R.Szeliski