Geometric Transformations, Pixel Interpolation, Image Warping

Geometric Transformation

A geometric transformation is a vector T that transforms a pixel (x,y) to a new position (x',y').

The main use of geometric transformations is to correct distortions in images.

There are two main steps in any geometric transformation:

  1. Pixel Coordinate Transformation: mapping a pixel of the input image to a point in the output image

  2. Brightness Interpolation: output coordinates computed in the previous step are usually real values that can't be directly mapped onto a digital grid. We use brightness interpolation to estimate locations on the digital grid that are closest to the computed output coordinates

Pixel Coordinate Transformation

A few common geometric transformations include translation, rotation, scaling and skewing. These are called affine transformations.

In general,

When we apply a geometric transformation to the entire image, the coordinate system might change. The Jacobian Determinant J provides information on how the coordinate system changes.

To perform a geometric transformation, we use matrix multiplication. We represent the pixel and the transformation matrices using homogeneous coordinates to allow any transformation (including translation) to be performed using a simple matrix multiplication.

The above affine transformation equations can be expressed in matrix notation as follows:

Translation

So, J=1

So, J=1

Scaling

Skewing

So, J=1

Note that the order of transformations is important. Translation and then rotation is NOT the same as rotation and then translation. This is because after translation, the axis of rotation will change.

Brightness Interpolation

As discussed, the output coordinates (x', y') will be real numbers and will most likely not fit into a discrete-valued digital raster/grid. For each output point, we use brightness interpolation of neighboring samples to estimate the closest integral values that can fit the coordinates onto the discrete grid.

There are 3 commonly used interpolation techniques:

  • Nearest-Neighborhood Interpolation

  • Linear Interpolation

  • Bicubic Interpolation

We aim to determine the brightness at (x',y') in the output image by determining the brightness value of the corresponding point (x,y) in the original image. To do so, we first compute the inverse transform:

Unfortunately, the (x,y) values returned by the above computation will not fit the digital raster either. So, the brightness value is unknown. To get the brightness value at (x,y), the image is resampled.

The brightness can be expressed by the following equation:

Nearest-Neighborhood Interpolation

This method of interpolation might cause step-like boundaries.

Linear Interpolation

Linear Interpolation explores 4 points in the neighborhood of (x,y) and combines them linearly. The influence a point has in the linear combination depends on its proximity to (x,y).

Linear Interpolation is computed as follows:

where l=floor(x), k=floor(y), a=x-l, b=y-k

This may cause a little blurring due to its averaging nature.

Sidenote: Bilinear Interpolation is the successive application of Linear Interpolation along each axis.
It is NOT linear in x, y.

Bicubic Interpolation

Bicubic Interpolation uses a bicubic polynomial from 16 points in the neighborhood to compute the brightness at (x,y).

It overcomes the drawbacks of both nearest-neighborhood interpolation (i.e. step-like boundaries) and linear interpolation (i.e. blurring). It also preserves fine details in the image very well.

Image Warping

  • Image Warping refers to the digital manipulation of an image so as to distort shapes in the image. It can be used to fix distortions or for creative purposes such as image morphing.

  • We make use of landmarks (also called correspondences/fiducials) as the control points for warping. We have a set of source and target anchor points that determine how the image must be warped.

  • The Radial Basis Function (RBF) or Radial Basis Interpolation is used to perform Image Warping.

  • Different types of warping include thin-plate warping, Gaussian warping and affine least-square warping.

Applications of Image Warping

  • Image Morphing: It is the blending of two warped images.

  • Image Mosaicing: It is the piecing together of images to form a cohesive image. (Ex. Image stitching for panoramas) Some image mosaicing issues include:

    • the need for a cancavas

    • blending at the edges of images

    • adjusting brightness

    • cascading transformations

  • Some other applications of warping include template creation, lens distortion etc.

Last updated