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

Goal

In this chapter,

Theory

Morphological transformations are some simple operations based on the image shape. It is normally performed on binary images. It needs two inputs, one is our original image, second one is called structuring element or kernel which decides the nature of operation. Two basic morphological operators are Erosion and Dilation. Then its variant forms like Opening, Closing, Gradient etc also comes into play. We will see them one-by-one with help of following image:

j.png
image

1. Erosion

The basic idea of erosion is just like soil erosion only, it erodes away the boundaries of foreground object (Always try to keep foreground in white). So what it does? The kernel slides through the image (as in 2D convolution). A pixel in the original image (either 1 or 0) will be considered 1 only if all the pixels under the kernel is 1, otherwise it is eroded (made to zero).

So what happends is that, all the pixels near boundary will be discarded depending upon the size of kernel. So the thickness or size of the foreground object decreases or simply white region decreases in the image. It is useful for removing small white noises (as we have seen in colorspace chapter), detach two connected objects etc.

Here, as an example, I would use a 5x5 kernel with full of ones. Let's see it how it works:

1 import cv2
2 import numpy as np
3 
4 img = cv2.imread('j.png',0)
5 kernel = np.ones((5,5),np.uint8)
6 erosion = cv2.erode(img,kernel,iterations = 1)

Result:

erosion.png
image

2. Dilation

It is just opposite of erosion. Here, a pixel element is '1' if atleast one pixel under the kernel is '1'. So it increases the white region in the image or size of foreground object increases. Normally, in cases like noise removal, erosion is followed by dilation. Because, erosion removes white noises, but it also shrinks our object. So we dilate it. Since noise is gone, they won't come back, but our object area increases. It is also useful in joining broken parts of an object.

1 dilation = cv2.dilate(img,kernel,iterations = 1)

Result:

dilation.png
image

3. Opening

Opening is just another name of erosion followed by dilation. It is useful in removing noise, as we explained above. Here we use the function, cv2.morphologyEx()

1 opening = cv2.morphologyEx(img, cv2.MORPH_OPEN, kernel)

Result:

opening.png
image

4. Closing

Closing is reverse of Opening, Dilation followed by Erosion. It is useful in closing small holes inside the foreground objects, or small black points on the object.

1 closing = cv2.morphologyEx(img, cv2.MORPH_CLOSE, kernel)

Result:

closing.png
image

5. Morphological Gradient

It is the difference between dilation and erosion of an image.

The result will look like the outline of the object.

1 gradient = cv2.morphologyEx(img, cv2.MORPH_GRADIENT, kernel)

Result:

gradient.png
image

6. Top Hat

It is the difference between input image and Opening of the image. Below example is done for a 9x9 kernel.

1 tophat = cv2.morphologyEx(img, cv2.MORPH_TOPHAT, kernel)

Result:

tophat.png
image

7. Black Hat

It is the difference between the closing of the input image and input image.

1 blackhat = cv2.morphologyEx(img, cv2.MORPH_BLACKHAT, kernel)

Result:

blackhat.png
image

Structuring Element

We manually created a structuring elements in the previous examples with help of Numpy. It is rectangular shape. But in some cases, you may need elliptical/circular shaped kernels. So for this purpose, OpenCV has a function, cv2.getStructuringElement(). You just pass the shape and size of the kernel, you get the desired kernel.

1 # Rectangular Kernel
2 >>> cv2.getStructuringElement(cv2.MORPH_RECT,(5,5))
3 array([[1, 1, 1, 1, 1],
4  [1, 1, 1, 1, 1],
5  [1, 1, 1, 1, 1],
6  [1, 1, 1, 1, 1],
7  [1, 1, 1, 1, 1]], dtype=uint8)
8 
9 # Elliptical Kernel
10 >>> cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(5,5))
11 array([[0, 0, 1, 0, 0],
12  [1, 1, 1, 1, 1],
13  [1, 1, 1, 1, 1],
14  [1, 1, 1, 1, 1],
15  [0, 0, 1, 0, 0]], dtype=uint8)
16 
17 # Cross-shaped Kernel
18 >>> cv2.getStructuringElement(cv2.MORPH_CROSS,(5,5))
19 array([[0, 0, 1, 0, 0],
20  [0, 0, 1, 0, 0],
21  [1, 1, 1, 1, 1],
22  [0, 0, 1, 0, 0],
23  [0, 0, 1, 0, 0]], dtype=uint8)

Additional Resources

  1. Morphological Operations at HIPR2

Exercises