Loading [MathJax]/extensions/tex2jax.js

You are here: Start » Tutorial Exercises » Classify the Mounts

Classify the Mounts

Aim:

Devise an algorithm that finds damaged mounts by analyzing the areas of blobs.

Input:

A single image with a set of mounts in it.

The input image is stored in the classify_mounts directory.

Output:

A set of regions that contains only damaged mounts.

Hints:

To solve this issue the Blob Analysis technique could be used. This exercise shows one of the typical computer vision problems. In order to extract the blobs from the background the ThresholdToRegion filter should be applied.

To extract a single region for each object use the SplitRegionIntoBlobs filter. To get only the damaged blobs, consider using the ClassifyRegions filter.

The CreateHistogram filter may be helpful in finding the invalid object area.

Labeling connections is explained in this article.

Solution (FIS):

►Click here to show the solution.

Video Tutorial

Main macrofilter uses the Blob Analysis technique to find damaged mounts.

Further Readings

  • Blob Analysis - Article presents detailed information about the Blob Analysis technique.