Image Geometry and Planar Homography | Computer Vision Lecture 9

Added:

Image Formation
Geometry Concepts
Camera Matrix
Projection Exercise
Homography Basics
Homography Use
Practical Homography
Robot Mapping
Key Takeaways

Image Formation

0:00
Playing Section
  • 1

    Recap of the geometry of image formation from 3D to 2D.

  • 2

    Discusses pinhole camera basics and issues like dark images.

  • 3

    Introduces thin lens model to create brighter images.

Fundamental linear algebra, including matrix-vector multiplication, system of linear equations, and matrix inversion.
Basic coordinate geometry, specifically 2D and 3D coordinate transformations such as translation, rotation, and scaling.
The basic pinhole camera model and how 3D world scenes project onto 2D image planes.
An introductory understanding of projective geometry and why Cartesian coordinates are sometimes insufficient for perspective projections.
Image warping and panorama stitching (mosaicing) using computed homography matrices.
Camera calibration techniques (such as Zhang's method) to determine intrinsic and extrinsic camera parameters.
Robust estimation frameworks, specifically RANSAC (Random Sample Consensus), to accurately calculate homography in the presence of outlier feature matches.
Epipolar geometry and stereo vision, which extend planar mapping concepts to multi-view 3D reconstruction and depth estimation.
182K views2.5Klikes35:22@PeterCorkeOriginal Release: 2012-10-10

This lecture explains how 3D world points are projected onto 2D image planes using homogeneous coordinates, where points are represented as (X, Y, 1) and lines as (L1, L2, L3), enabling elegant mathematical operations like finding lines through points or intersections using cross products; the complete camera projection involves intrinsic parameters (focal length, pixel size, principal point) and extrinsic parameters (rotation and translation), which can be combined into a 3×4 camera matrix, and when restricted to points on a single plane (where Z=0), this reduces to a 3×3 planar homography matrix that maps 2D points on one plane to 2D image coordinates, allowing applications like image rectification, virtual camera repositioning, and robot vision calibration by establishing correspondences between known world points and their image projections.