Revision dd0f4105a0fb6cafd7f4810cfa4bb2957adf4ee7 (click the page title to view the current version)

Camera Mathematics

Changes from dd0f4105a0fb6cafd7f4810cfa4bb2957adf4ee7 to ec5a772500451ed509b410b51b4030b4ae239c32

---
title: Camera Mathematics
categories: session
---

# Key Concepts

- calibration
- perspective

# Briefing

## World frame and camera frame

$$\mathbf{X} = R\mathbf{X}_0 + T\in\mathbb{R}^3$$

## Projection

$$ Z \begin{bmatrix}x\\y\\1\end{bmatrix} = 
\begin{bmatrix}f 0 0 0 \\0 f  0 0 \\0 0 1 0\end{bmatrix} \cdot
\begin{bmatrix}X\\Y\\Z\\1\end{bmatrix}$$

Note that $Z$ is typically unknown.
We write $\lambda (=Z)$ for this unknown constant.

$$ Z \begin{bmatrix}x\\y\\1\end{bmatrix} = 
\begin{bmatrix}f  0 0 \\0 f   0 \\0 0 1 \end{bmatrix} \cdot
\begin{bmatrix}1 0 0 0 \\0 1  0 0 \\0 0 1 0\end{bmatrix} \cdot
\begin{bmatrix}R T \\0 1\end{bmatrix} \cdot
\begin{bmatrix}X\\Y\\Z\\1\end{bmatrix}$$

## Ideal Camera Projection

# Exercises

# Debrief