OpenCV  3.0.0-rc1
Open Source Computer Vision
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Geometric Transformations of Images

Goals

Transformations

OpenCV provides two transformation functions, cv2.warpAffine and cv2.warpPerspective, with which you can have all kinds of transformations. cv2.warpAffine takes a 2x3 transformation matrix while cv2.warpPerspective takes a 3x3 transformation matrix as input.

Scaling

Scaling is just resizing of the image. OpenCV comes with a function cv2.resize() for this purpose. The size of the image can be specified manually, or you can specify the scaling factor. Different interpolation methods are used. Preferable interpolation methods are cv2.INTER_AREA for shrinking and cv2.INTER_CUBIC (slow) & cv2.INTER_LINEAR for zooming. By default, interpolation method used is cv2.INTER_LINEAR for all resizing purposes. You can resize an input image either of following methods:

1 import cv2
2 import numpy as np
3 
4 img = cv2.imread('messi5.jpg')
5 
6 res = cv2.resize(img,None,fx=2, fy=2, interpolation = cv2.INTER_CUBIC)
7 
8 #OR
9 
10 height, width = img.shape[:2]
11 res = cv2.resize(img,(2*width, 2*height), interpolation = cv2.INTER_CUBIC)

Translation

Translation is the shifting of object's location. If you know the shift in (x,y) direction, let it be \((t_x,t_y)\), you can create the transformation matrix \(\textbf{M}\) as follows:

\[M = \begin{bmatrix} 1 & 0 & t_x \\ 0 & 1 & t_y \end{bmatrix}\]

You can take make it into a Numpy array of type np.float32 and pass it into cv2.warpAffine() function. See below example for a shift of (100,50):

1 import cv2
2 import numpy as np
3 
4 img = cv2.imread('messi5.jpg',0)
5 rows,cols = img.shape
6 
7 M = np.float32([[1,0,100],[0,1,50]])
8 dst = cv2.warpAffine(img,M,(cols,rows))
9 
10 cv2.imshow('img',dst)
11 cv2.waitKey(0)
12 cv2.destroyAllWindows()

warning

Third argument of the cv2.warpAffine() function is the size of the output image, which should be in the form of **(width, height)**. Remember width = number of columns, and height = number of rows.

See the result below:

translation.jpg
image

Rotation

Rotation of an image for an angle \(\theta\) is achieved by the transformation matrix of the form

\[M = \begin{bmatrix} cos\theta & -sin\theta \\ sin\theta & cos\theta \end{bmatrix}\]

But OpenCV provides scaled rotation with adjustable center of rotation so that you can rotate at any location you prefer. Modified transformation matrix is given by

\[\begin{bmatrix} \alpha & \beta & (1- \alpha ) \cdot center.x - \beta \cdot center.y \\ - \beta & \alpha & \beta \cdot center.x + (1- \alpha ) \cdot center.y \end{bmatrix}\]

where:

\[\begin{array}{l} \alpha = scale \cdot \cos \theta , \\ \beta = scale \cdot \sin \theta \end{array}\]

To find this transformation matrix, OpenCV provides a function, cv2.getRotationMatrix2D. Check below example which rotates the image by 90 degree with respect to center without any scaling.

1 img = cv2.imread('messi5.jpg',0)
2 rows,cols = img.shape
3 
4 M = cv2.getRotationMatrix2D((cols/2,rows/2),90,1)
5 dst = cv2.warpAffine(img,M,(cols,rows))

See the result:

rotation.jpg
image

Affine Transformation

In affine transformation, all parallel lines in the original image will still be parallel in the output image. To find the transformation matrix, we need three points from input image and their corresponding locations in output image. Then cv2.getAffineTransform will create a 2x3 matrix which is to be passed to cv2.warpAffine.

Check below example, and also look at the points I selected (which are marked in Green color):

1 img = cv2.imread('drawing.png')
2 rows,cols,ch = img.shape
3 
4 pts1 = np.float32([[50,50],[200,50],[50,200]])
5 pts2 = np.float32([[10,100],[200,50],[100,250]])
6 
7 M = cv2.getAffineTransform(pts1,pts2)
8 
9 dst = cv2.warpAffine(img,M,(cols,rows))
10 
11 plt.subplot(121),plt.imshow(img),plt.title('Input')
12 plt.subplot(122),plt.imshow(dst),plt.title('Output')
13 plt.show()

See the result:

affine.jpg
image

Perspective Transformation

For perspective transformation, you need a 3x3 transformation matrix. Straight lines will remain straight even after the transformation. To find this transformation matrix, you need 4 points on the input image and corresponding points on the output image. Among these 4 points, 3 of them should not be collinear. Then transformation matrix can be found by the function cv2.getPerspectiveTransform. Then apply cv2.warpPerspective with this 3x3 transformation matrix.

See the code below:

1 img = cv2.imread('sudokusmall.png')
2 rows,cols,ch = img.shape
3 
4 pts1 = np.float32([[56,65],[368,52],[28,387],[389,390]])
5 pts2 = np.float32([[0,0],[300,0],[0,300],[300,300]])
6 
7 M = cv2.getPerspectiveTransform(pts1,pts2)
8 
9 dst = cv2.warpPerspective(img,M,(300,300))
10 
11 plt.subplot(121),plt.imshow(img),plt.title('Input')
12 plt.subplot(122),plt.imshow(dst),plt.title('Output')
13 plt.show()

Result:

perspective.jpg
image

Additional Resources

  1. "Computer Vision: Algorithms and Applications", Richard Szeliski

Exercises