Pinhole camera model

Pinhole camera model

The pinhole camera model describes the mathematical relationship between the coordinates of a 3D point and its projection onto the image plane of an "ideal" pinhole camera, where the camera aperture is described as a point and no lenses are used to focus light. The model does not include, for example, geometric distortions or blurring of unfocused objects caused by lenses and finite sized apertures. It also does not take into account that most practical cameras have only discrete image coordinates. This means that the pinhole camera model can only be used as a first order approximation of the mapping from a 3D scene to a 2D image. Its validity depends on the quality of the camera and, in general, decreases from the center of the image to the edges as lens distortion effects increase.

Some of the effects that the pinhole camera model does not take into account can be compensated for, for example by applying suitable coordinate transformations on the image coordinates, and others effects are sufficiently small to be neglected if a high quality camera is used. This means that the pinhole camera model often can be used as a reasonable description of how a camera depicts a 3D scene, for example in computer vision and computer graphics.

The geometry and mathematics of the pinhole camera

The geometry related to the mapping of a pinhole camera is illustrated in the figure. The figure contains the following basic objects

* A 3D orthogonal coordinate system with its origin at O. This is also where the "camera aperture" is located. The three axes of the coordinate system are referred to as X1, X2, X3. Axis X3 is pointing in the viewing direction of the camera and is referred to as the "optical axis", "principal axis", or "principal ray". The 3D plane which intersects with axes X1 and X2 is the front side of the camera, the "focal plane" or "principal plane".

* An image plane where the 3D world is projected through the aperture of the camera. The image plane is parallel to axes X1 and X2 and it located at distance f from the origin O in the negative direction of the X3 axis. A practical implementation of a pinhole camera implies that the image plane is located such that it intersects the X3 axis at coordinate "-f" where "f > 0". "f" is also referred to as the "focal length" of the pinhole camera.

* A point R at the intersection of the optical axis and the image plane. This point is referred to as the "principal point" or "image center".

* A point P somewhere in the world at coordinate (x_1, x_2, x_3) relative to the axes X1,X2,X3.

* The "projection line" of point P into the camera. This is the green line which passes through point P and the point O.

* The projection of point P onto the image plane, denoted Q. This point is given by the intersection of the projection line (green) and the image plane. In any practical situation we can assume that X3 > 0 which means that the intersection point is well defined.

* There is also a 2D coordinate system in the image plane, with origin at R and with axes Y1 and Y2 which are parallel to X1 and X2, respectively. The coordinates of point Q relative to this coordinate system is (y_1, y_2) .

The "pinhole" aperture of the camera, through which all projection lines must pass, is assumed to be infinitely small, a point. In the literature this point in 3D space is referred to as the "optical (or lens or camera) center", "focus", or "camera focal point".Fact|date=September 2007

Next we want to understand how the coordinates (y_1, y_2) of point Q depend on the coordinates (x_1, x_2, x_3) of point P. This can be done with the help of the following figure which shows the same scene as the previous figure but now from above, looking down in the negative direction of the X2 axis.

In this figure we see two similar triangles, both having parts of the projection line (green) as their hypotenuses. The catheti of the left triangle are -y_1 and "f" and the catheti of the right triangle are x_1 and x_3 . Since the two triangles are similar it follows that

: frac{-y_1}{f} = frac{x_1}{x_3} or y_1 = -frac{f , x_1}{x_3}

A similar investigation, looking in the negative direction of the X1 axis gives

: frac{-y_2}{f} = frac{x_2}{x_3} or y_2 = -frac{f , x_2}{x_3}

This can be summarized as

: egin{pmatrix} y_1 \ y_2 end{pmatrix} = -frac{f}{x_3} egin{pmatrix} x_1 \ x_2 end{pmatrix}

which is an expression that describes the relation between the 3D coordinates (x_1,x_2,x_3) of point P and its image coordinates (y_1,y_2) given by point Q in the image plane.Fact|date=September 2007

Before continuing, it should be noted that the mapping from 3D to 2D coordinates described by a pinhole camera is a perspective projection followed by a 180^{circ} rotation in the image plane. This corresponds to how a real pinhole camera operates; the resulting image is rotated 180^{circ} and the relative size of projected objects depends on their distance to the focal point and the overall size of the image depends on the distance "f" between the image plane and the focal point. In order to produce an unrotated image, which is what we expect from a camera, there are two possibilities:

* Rotate the coordinate system in the image plane 180^{circ} (in either direction). This is the way any practical implementation of a pinhole camera would solve the problem; for a photographic camera we rotate the image before looking at it, and for a digital camera we read out the pixels in such an order that it becomes rotated.

* Place the image plane so that it intersects the X3 axis at "f" instead of at "-f" and rework the previous calculations. This would generate a "virtual (or front) image plane" which cannot be implemented in practice, but provides a theoretical camera which may be simpler to analyse than the real one.

In both cases the resulting mapping from 3D coordinates to 2D image coordinates is given byFact|date=September 2007

: egin{pmatrix} y_1 \ y_2 end{pmatrix} = frac{f}{x_3} egin{pmatrix} x_1 \ x_2 end{pmatrix}

(same as before except no minus sign)

Projective representation

The mapping from 3D coordinates of points in space to 2D image coordinates can also be represented in homogeneous coordinates.Fact|date=September 2007 Let mathbf{x} be a representation of a 3D point in homogeneous coordinates (a 4-dimensional vector), and let mathbf{y} be a representation of the image of this point in the pinhole camera (a 3-dimensional vector). Then the following relation holds

: mathbf{y} sim mathbf{C} , mathbf{x}

where mathbf{C} is the 3 imes 4 camera matrix and the , sim sign implies that the left and right hand sides are equal up to a non-zero scalar multiplication. A consequence of this relation is that mathbf{C} can be seen as an element of a projective space; two camera matrices are equivalent if they are equal up to a scalar multiplication. This description of the pinhole camera mapping, as a linear transformation mathbf{C} instead of as a fraction of two linear expressions, makes it possible to simplifiy many derivations of relations between 3D and 2D coordinates.Fact|date=September 2007

See also

* Entrance pupil, the equivalent location of the pinhole in relation to object space in a real camera.
* Exit pupil, the equivalent location of the pinhole in relation to the image plane in a real camera.
* Pinhole camera, the practical implementation of the mathematical model described in this article.

References

*cite book
author=David A. Forsyth and Jean Ponce
title=Computer Vision, A Modern Approach
publisher=Prentice Hall
year=2003
id=ISBN 0-12-379777-2

*cite book
author=Richard Hartley and Andrew Zisserman
title=Multiple View Geometry in computer vision
publisher=Cambridge University Press
year=2003
id=ISBN 0-521-54051-8
url = http://books.google.com/books?id=si3R3Pfa98QC&pg=PA153&dq=pinhole+intitle:%22Multiple+View+Geometry+in+computer+vision%22&lr=&as_brr=0&ei=nUSqR4WwHqP2iwGn-MiwCg&sig=0_W7ppQQx1zDNlCGYXLySmr4OOU

*cite book
author=Bernd Jähne
title=Practical Handbook on Image Processing for Scientific Applications
publisher=CRC Press
year=1997
id=ISBN 0-8493-8906-2

*cite book
author=Linda G. Shapiro and George C. Stockman
title=Computer Vision
publisher=Prentice Hall
year=2001
id=ISBN 0-13-030796-3

*cite book
author=Gang Xu and Zhengyou Zhang
title=Epipolar geometry in Stereo, Motion and Object Recognition
publisher=Kluwer Academic Publishers
year=1996
id=ISBN 0-7923-4199-6
url = http://books.google.com/books?id=DnFaUidM-B0C&pg=PA7&dq=pinhole+intitle:%22Epipolar+geometry%22&lr=&as_brr=3&ei=3HyqR_C2CIjAiwHZyeWwCg&sig=3fuDWfKIHdycPNCgHrjwd25cv9s


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • Pinhole camera — A pinhole camera is a very simple camera with no lens and a single very small aperture. Simply explained it is a light proof box with a single hole in one side. Light from a scene passes through this single point and projects an inverted image on …   Wikipedia

  • Camera focal point (pinhole camera) — #REDIRECT Pinhole camera model …   Wikipedia

  • Camera resectioning — (often called camera calibration) is the process of finding the true parameters of the camera that produced a given photograph or video. These parameters characterize the transformation that maps 3D points in the scene to 2D points in the camera… …   Wikipedia

  • Camera matrix — In computer vision a camera matrix or (camera) projection matrix is a 3 imes 4 matrix which describes the mapping of a pinhole camera from 3D points in the world to 2D points in an image.Let mathbf{x} be a representation of a 3D point in… …   Wikipedia

  • Camera — For other uses, see Camera (disambiguation). Various cameras A camera is a device that records and stores images. These images may be still photographs or moving images such as videos or movies. The term camera comes from the camera obscura… …   Wikipedia

  • Camera obscura — This article is about an optical device. For other uses, see Camera obscura (disambiguation) …   Wikipedia

  • RGB color model — RGB redirects here. For other uses, see RGB (disambiguation). A representation of additive color mixing. Projection of primary color lights on a screen shows secondary colors where two overlap; the combination of all three of red, green, and blue …   Wikipedia

  • Digital camera — Digicam redirects here. For the military camouflauge method using micropatterns, see Military camouflage#Digital camouflauge. A digital camera (or digicam) is a camera that takes video or still photographs, or both, digitally by recording images… …   Wikipedia

  • Digital camera back — Kodak DCS420 digital camera, consisting of a modified Nikon N90s body (left) and a digital back (right) shown here separated …   Wikipedia

  • Rangefinder camera — A Foca camera of 1947 at the Musée des Arts et Métiers in Paris. A rangefinder camera is a camera fitted with a rangefinder: a range finding focusing mechanism allowing the photographer to measure the subject distance and take photographs that… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”