Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 21, 2021 08:38 pm GMT

Stamp Detection using Computer Vision andPython

Background

A friend of mine reach out and asked me whether I could write a program to detect the number of Rubber stamps in an image. Apparently, these invoice receipts will be categorized based on the number of stamps on them. Initially, I thought of building a Deep Learning Segmentation model, but soon I realized that it is not worth the effort.

The images are generated in a controlled environment so few computer vision algorithms should do the trick. To illustrate the computer vision algorithms used in detecting the stamps, I will be using a sample image downloaded from Google as the original image is company property. The goal is to identify two stamps in the sample image.

Alt Text

Solution

High level solution steps are:

  1. Read the image.
  2. Blur & detect the edges.
  3. Find all contours and remove the smaller contours.
  4. Fill the area inside contours & Close the blobs.
  5. Filter the stamps.

Before we start let us import the necessary packages.

1. Read theimage

Read the color image using imread function. To display the image we will use Matplotlib. Matplotlib expects the color image channels to be of the order RGB, but OpenCV reads the image as BGR, so we will write a helper function for the conversion.

Alt Text

2. Blur & detect the edges

First, we need to convert the image to grayscale using cvtColor function. Then, we will use bilateralFilter to reduce noise in the image. Bilateral filter is preferred over Gaussian because it preserves the edges much better. Finally, we will use canny edge detector to threshold the image and detect edges. The normal canny edge detector requires two threshold parameters which is hard to tune so we will use the one from Zero-parameter, automatic Canny edge detection with Python and OpenCV

Alt Text

3. Find all contours and remove the smaller contours

findContours function can find all contours in the image. The outer most contours are good enough for our use case so we will use the retrieval mode RETR_EXTERNAL. CHAIN_APPROX_NONE mode is preferred as we don't want to lose any point on the contour due to approximation. To remove the unwanted smaller contours, we can filter the contours by area.

Total nr of contours found: 408

4. Fill the area inside contours & Close the blobs

Instead of working on the original binary image, we will draw the top contours on a image with black background and use this as base. Any disconnect in the contours are easier to identify when fill the area inside the contours using drawContours function.

Alt Text

As suspected, the top stamp has a thin black line passing through it. We need to close this blob so that the top stamp is considered as one contour instead of two different ones. Morphological Closing operation is perfect for achieving this.

Alt Text

5. Filter the stamps

To isolate the stamp contours, we can identify all the contours from the latest binary image and filter for contours with more than 5 points as the stamp is an ellipse.

Alt Text

Bonus - Highlight the identified stamps

For demo of this program, wouldn't it be cool if we can highlight only the stamped area of the image? Since we agree that it is indeed cool, let us see how we can achieve that. The steps involved are:

  1. Duplicate the original image and blur the entire image.
  2. Loop through the blurred image and for the points on or inside the image (using pointPolygonTest to check) we replace it with pixel values from the output image. We are using pixel values from the output image because we need the blue lines drawn over the stamps.

Alt Text

Conclusion

Yep, that's it for this post. You can access this notebook from here.


Original Link: https://dev.to/6aravind/stamp-detection-using-computer-vision-and-python-1ghg

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To