• No results found

Camera Calibration

N/A
N/A
Protected

Academic year: 2022

Share "Camera Calibration"

Copied!
41
0
0

Loading.... (view fulltext now)

Full text

(1)

Camera Calibration

CS485/685 Computer Vision

Prof. Bebis

(2)

Camera Calibration - Goal

• Estimate the extrinsic and intrinsic camera parameters.

f/sx f/sy

(3)

Camera Calibration - How

• Using a set of known correspondences between point features in the world (X

w

, Y

w

, Z

w

) and their projections on the image (x

im

, y

im

)

f/sx f/sy

(4)

Calibration Object

• Calibration relies on one or more images of a calibration object:

(1) A 3D object of known geometry.

(2) Located in a known position in space.

(3) Yields image features which can be located accurately.

(5)

Calibration object: example

• Two orthogonal grids of

equally spaced black squares.

• Assume that the world

reference frame is centered at the lower left corner of the

right grid, with axes parallel to

the three directions identified by

the calibration pattern.

(6)

Calibration pattern: example (cont’d)

• Obtain 3D coordinates (X

w

, Y

w

, Z

w

)

– Given the size of the planes, the number of squares etc. (i.e., all known by

construction), the coordinates of each vertex can be computed in the world reference frame using trigonometry.

(7)

Calibration pattern: example (cont’d)

• Obtain 2D coordinates (x

im

, y

im

)

– The projection of the vertices on the image can be found by

intersecting the edge lines of the corresponding square sides (or through corner detection).

(8)

Problem Statement

Compute the extrinsic and intrinsic camera

parameters from N corresponding pairs of points:

and (x

(XiW ,YiW ,ZiW ) im_i

, y

im_i

), i = 1, . . . , N.

• Very well studied problem.

• There exist many different methods for camera calibration.

(9)

Methods

(1) Indirect camera calibration

(1.1) Estimate the elements of the projection matrix.

(1.2) If needed, compute the intrinsic/extrinsic camera

parameters from the entries of the projection matrix.

(10)

Methods (cont’d)

(2) Direct camera calibration

Direct recovery of the intrinsic and extrinsic camera

parameters.

(11)

Method 1: Indirect Camera Calibration

• Review of basic equations

Note: replaced (x

im

,y

im

) with (x,y) for simplicity.

(12)

(Method 1) Step 1: solve for m

ij

’s

• M has 11 independent entries.

– e.g., divide every entry by m11

• Need at least 11 equations for computing M.

• Need at least 6 world-image point correspondences.

(13)

(Method 1) Step 1: solve for m

ij

’s

• Each 3D-2D correspondence gives rise to two equations:

(XiW ,YiW ,ZiW )  ( , )x yi i

(14)

(Method 1) Step 1: solve for m

ij

’s

• This leads to a homogeneous system of equations:

N x 12 matrix

(15)

(Method 1) Step 1: solve for m

ij

’s

(16)

(Method 1) Step 2: find intrinsic/extrinsic parameters

(17)

(Method 1) Step 2: find intrinsic/extrinsic parameters

• Let’s define the following vectors:

(18)

• The solutions are as follows (see book chapter for details):

• The rest parameters are easily computed ....

(Method 1) Step 2: find intrinsic/extrinsic parameters

(19)

Method 2: Direct Camera Calibration

• Review of basic equations

– From world coordinates to camera coordinates

– For simplicity, we will replace -T’ with T – Warning: this is NOT the same T as before!

P

c

=RP

w

+T

(20)

Method 2: Direct Camera Calibration (cont’d)

• Review of basic equations

– From camera coordinates to pixel coordinates:

– Relating world coordinates to pixel coordinates:

(21)

Method 2: Direct Parameter Calibration

• Intrinsic parameters

– Intrinsic parameters f, sx, sy, ox, and oy are not independent.

– Define the following four independent parameters:

(22)

Method 2: Main Steps

(1) Assuming that o

x

and o

y

are known, estimate all other parameters.

(2) Estimate o

x

and o

y

(23)

(Method 2) Step 1: estimate f

x ,

α, R, and T

• To simplify notation, set (x

im

- o

x

, y

im

- o

y

) = (x, y)

• Combining the equations above (i.e., same denominator),

we have:

(24)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Each pair of corresponding points must satisfy the previous equation:

(XiW ,YiW ,ZiW )  ( , )x yi i

divide by f

y

and re-arrange terms:

(25)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

where

we obtain the following equation:

(26)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Assuming N correspondences leads to a homogeneous system :

N x 8 matrix

(27)

(Method 2) Step 1: estimate f

x ,

α, R, and T

(cont’d)

(28)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine α and | γ |

(29)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine r

21

, r

22

, r

23

, r

11

, r

12

, r

13

, T

y

, T

x

(up to an unknown common sign)

(30)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine r

31

, r

32

, r

33

– Can be estimated as the cross product of R1 and R2:

– The sign of R3 is already fixed (the entries of R3 remain unchanged if the signs of all the entries of R1 and R2 are reversed).

• We have estimated R  call the estimate

(31)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Ensure the orthogonality of R

– The computation of R does not take into account explicitly the orthogonality constraints.

– The estimate of R cannot be expected to be orthogonal:

– Enforce orthogonality on using SVD:

– Replace D with I:

(32)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine the sign of γ

– Consider the following equations again:

(33)

(Method 2) Step 1: estimate f

x ,

α, R, and T

(cont’d)

(34)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine T

z

and f

x

– Consider the equation:

– Let’s rewrite it in the form:

or xT

z

+f

x

(r

11

X

w

+r

12

Y

w

+r

13

Z

w

+T

x

) = -x(r

31

X

w

+r

32

Y

w

+r

33

Z

w

)

(35)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

– We can obtain Tz and fx by solving a system of equations like the above, written for N points:

Using SVD, the (least-squares) solution is:

(36)

(Method 2) Step 1: estimate f

x ,

α, R, and T (cont’d)

• Determine f

y

:

(37)

(Method 2) Step 2: estimate o

x

and o

y

• The computation of o

x

and o

y

is based on the following theorem:

Orthocenter Theorem: Let T be the triangle on the image plane defined by the three vanishing points of three

mutually orthogonal sets of parallel lines in space. Then,

(o

x

, o

y

) is the orthocenter of T.

(38)

(Method 2) Step 2: estimate o

x

and o

y

(cont’d)

• We can use the same calibration pattern to compute three vanishing points (use three pairs of parallel lines defined by the sides of the planes).

• None of the three mutually

orthogonal directions should

not be near parallel to the

image plane!

(39)

Comments

• To improve the accuracy of camera calibration, it is a good idea to estimate the parameters several times (i.e., using different images) and average the results.

• Localization errors

– The precision of calibration depends on how accurately the world and image points are located.

– Studying how localization errors "propagate" to the

estimates of the camera parameters is very important.

(40)

Comments (cont’d)

• In theory, direct and indirect camera calibration should produce the same results.

• In practice, we obtain different solutions due to different error propagations.

• Indirect camera calibration is simpler and should be preferred when we do not need to compute the

intrinsic/extrinsic camera parameters explicitly.

(41)

How should we estimate the accuracy of a calibration algorithm?

• Project known 3D points on the image

• Compare their projections with the corresponding pixel coordinates of the points.

• Repeat for many points and estimate “re-projection”

error!

References

Related documents

• Students must incorporate structural elements learned in class (e.g., laminated beams, trusses, sway bracing, etc.).. I always make it a goal for the students to make a bridge

Religious participants were given one of the three vignettes randomly before completing the Witness Evaluation Scale, the Negative Attitudes Towards Atheist Scale, the Attitudes

Pandangan ulama di atas berbeda dengan pandangan aliran kedua yang melihat bahawa Islam adalah murni agama yang tidak berhubungan dengan politik dan

If you are enrolled in Kaiser Senior Advantage under the UEBT Retiree Health Plan and you also enroll in a Medicare prescription drug plan, you will be automatically dis-enrolled

Laparoscopic hysterectomy procedure: pelvic cavity prior to surgery (1), dissection of the Fallopian Tubes (2), dissection of the utero-ovarian ligaments (3), dissection of

Berdasar hasil pembahasan atas pengujian hipotesis mengenai pengaruh NPL terhadap perubahan Laba pada bank kecil, menunjukan bahwa secara partial variabel NPL

It can be seen, then, that this thesis is about the cultural practice of Chinese rural-urban migrant workers in relation to history and to collective political struggles in the wave

A large number of patients fall into the “high risk” category, either as a result of maternal or fetal risk factors identified antenatally, or as a result of intrapartum problems – all