mmdfabric - Detection of vertical weave in fabrics.
-
Description
- In this example, an enlarged image of a fabric (with backlight illumination) is processed. The purpose is getting a quantitative index of the fabric quality. For that, fabric spaces are detected and measured.
Reading
The image to be processed is read.
Enhancement of the white vertical stripes
A sequence of dilations (by a disk and two line segments) is applied to enhance the white stripes
The markers are the dark regions
The markers are the regional minima with contrast 25.
Watershed lines detect the white stripes center
Watershed of the original image from the dark stripes markers just created. Show the result overlayed on the original image.
Watershed lines detect the white stripes region
Create a new marker by taking the union of the dark markers and the watershed lines just created. The gradient of the original image is computed.
Final watershed lines
The watershed of the gradient of the original image, taking the marker just created, gives the extend of the white regions.
Final watershed regions and area measurement
The watershed regions area computed. The area of each watershed regions is measured and displayed.
Select only the narrow region (small area)
To select only the fabric spacing, select the regions with small area (less than 2000). Label the narrow regions.
Area measurement and ploting
Compute the area of each region and plot them. Also display the original image for illustration. From the plot, we can notice that the two rightmost weave spacing are significantly larger than the others.
mmshow(a);
o = mmblob(n,'area','data');
bar(double(o));
|
| (a) |
|
|
| (o) |
|
|