STEREO IMAGE ACQUISITION

In order to address the loss of depth information, given 2 images of a 3D scene and correspondence in points the depth of a point can be recovered using triangulation.

so given the following model:

The relation between the 2 images is only an horizontal translation

The perspective projection model the relation between image points and 3D ones can be described as follows:

computing the difference:

It’s true to say that can be computed from image measurements

where is called disparity. than can be computed

THE PROBLEM OF FINDING CORRESPONDENCES

In order to apply this model the correspondences between the points of the 2 images need to be computed, this is not an easy task nether computationally or conceptually, also the models relays on the 2 images being horizontally aligned, and to obtained this some computation is needed.

fortunately, the search space for correspondences is always 1 dimensional as 2 points share always the same coordinate. To address the horizontal alignment problem a homography called rectification is used on the images to warp them and obtain something horizontally aligned.

PREVIOUS NEXT