Auto-Calibration

Building

PHOTO BY SNAPWIRE

As the world is projected on our eyes, the objects in the world can be projected on the image plane of a camera. For this projection, the intrinsic and extrinsic matrix of the camera are required to render the image plane. In other words, if the shape of objects in the 3D world is already defined, estimating what it looks like on the image plane is related to these matrices.

Especially, finding out the intrinsic matrix is about camera calibration which can be done with or without some materials such as a chessboard. Simply put, it helps to decide which color is proper to be painted in each pixel of the image plane. I wanted to research this work for the 3D reconstruction project which is the one of my personal projects. For that, I needed some calibration methods processed automatically which are more technically called auto-calibration. 

Requirement

Before describing the details, I have to determine what information I will use if I do not want to use any added materials like a chessboard. I assumed that we already knew about the actual heights of humans in meters and the bounding boxes of them in camera frames. In most cases, people can be easily observed in the place where cameras are installed, for example, for detecting or tracking people in computer vision and graphics. That is why I chose the human information to calibrate cameras. More specifially, I assumed that the average height of people is 1.8 meters and the bounding boxes whose shpae is rectangle were already available. Moreover, the camera is considered being set on the flat ground.

Problem Definition

People

Although we do not know about the tilt angle of the camera, it is required that the default camera coordinates is defined. As above, I set the coordinates as its z-axis is parallel with the ground and its y-axis is perpendicular to the ground. If the tilt angle is not zero, the z-axis which is the camera view vector intersects at a point on the ground. Let the tilt angle θ\theta, then the ground normal vector nn is (0,cosθ,sinθ)t(0, -cos\theta, -sin\theta)^t, so the ground plane equation is Hycosθzsinθ=0H-ycos\theta-zsin\theta=0 where HH is the camera height from the ground in meter. In addition, people detected are interpreted as two points which are the top point T(xt,yt,zt)T(x_t, y_t, z_t) and the bottom point B(xb,yb,zb)B(x_b, y_b, z_b) in 3D camera coordinates. In this case, the distance between TT and BB is the human height hh that we already defined as 1.8 meters. Finally, the intrinsic camera matrix KK can be defined as follows: K=(f0ox0foy001)\begin{aligned} K &= \left(\begin{array}{ccc} f & 0 & o_x \\ 0 & f & o_y \\ 0 & 0 & 1 \end{array}\right) \end{aligned}

where ff is the focal length, oxo_x and oyo_y are the half of the camera width and height. Meanwhile, these points are projected on the camera as t(ut,vt)KTt(u_t, v_t)\cong KT and b(ub,vb)KBb(u_b, v_b)\cong KB. Now, TT and BB can be written as follows: T(xt,yt,zt)=((utox)(Hh)fsinθ+(vtoy)cosθ,(vtoy)(Hh)fsinθ+(vtoy)cosθ,f(Hh)fsinθ+(vtoy)cosθ)B(xb,yb,zb)=((ubox)Hfsinθ+(vboy)cosθ,(vboy)Hfsinθ+(vboy)cosθ,fHfsinθ+(vboy)cosθ)\begin{aligned} T(x_t, y_t, z_t) &= \left(\frac{(u_t-o_x)(H-h)}{f \sin \theta+(v_t-o_y) \cos \theta}, \frac{(v_t-o_y)(H-h)}{f \sin \theta+(v_t-o_y) \cos \theta}, \frac{f(H-h)}{f \sin \theta+(v_t-o_y) \cos \theta}\right) \\\\ B(x_b, y_b, z_b) &= \left(\frac{(u_b-o_x)H}{f \sin \theta+(v_b-o_y) \cos \theta}, \frac{(v_b-o_y)H}{f \sin \theta+(v_b-o_y) \cos \theta}, \frac{fH}{f \sin \theta+(v_b-o_y) \cos \theta}\right) \end{aligned}

Cost Functions

The parameters to estimate about the unknown camera are the focal length, the tilt angle and the height from ground. The pan angle is always considered zero because the default camera coordinates can be set so that zero-pan angle is satisfied. The roll angle is ignored in this work.

1. x-axis: the top point can be projected on the ground as the bottom one.

At first, we can imagine that the top and bottom points in 3D camera coordinates are transformed to the default camera coordinates whose tilt angle is zero. In the default camera coordinates, it is reasonable that the top point can be projected on the ground as the bottom one although it is possible that people do not always stand upright and the top and bottom points are distorted in camera view. Therefore, the xx components of the top and bottom points in the default camera coordinates should be the same, which allows the following cost function: E1(f,H,θ)=(utox)(Hh)ftanθ+vtoy(ubox)Hftanθ+vboy\begin{equation} E_1(f, H, \theta) = \frac{(u_t-o_x)(H-h)}{f \tan \theta+v_t-o_y}- \frac{(u_b-o_x)H}{f \tan \theta+v_b-o_y} \end{equation}

2. y-axis: the top point is hh-meter high from the bottom one.

Second, we already assume that the human height is hh-meter high which is 1.8 meters, so it can be used for another cost function. The yy components of the top point in the default camera coordinate is hh-meter higher than that of the bottom one. It induces the following cost function: E2(f,H,θ)=(vtoy)(Hh)ftanθ+vtoy(vboy)Hftanθ+vboyhcosθ\begin{equation} E_2(f, H, \theta) = \frac{(v_t-o_y)(H-h)}{f \tan \theta+v_t-o_y} - \frac{(v_b-o_y)H}{f \tan \theta+v_b-o_y} - h \cos \theta \end{equation}

3. z-axis: the top and bottom points have the same depth.

Third,  it is natural that the top and bottom points in the default camera coordinates have the same depth although the human head can get ahead of its foot a little or vice versa. It means that the final cost function can be written as follows: E3(f,H,θ)=(f(vtoy)tanθ)(Hh)ftanθ+vtoy(f(vboy)tanθ)Hftanθ+vboy\begin{equation} E_3(f, H, \theta) = \frac{(f-(v_t-o_y) \tan \theta)(H-h)}{f \tan \theta+v_t-o_y} - \frac{(f-(v_b-o_y) \tan \theta)H}{f \tan \theta+v_b-o_y} \end{equation}

These three cost functions represent for only one human sample, but it can be applied for many samples using summation of each cost funcion, which is the more natural situation. When samples are summed, L1L_1 norm or L2L_2 norm can be used. Besides, it is not necessary that these cost functions should be used when the only one parameter is unknown. It can be solved through the simple calcuation, not the estimation because each cost function can be reformed for the unknown parameter although it will be more complex.


© 2024. All rights reserved.