| [mmdcornea] [Up] [mmdfila] | Demonstrations |
| User Feedback |
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.
A sequence of dilations (by a disk and two line segments) is applied to enhance the white stripes
b = mmdil(a,mmsedisk(4));
c = mmdil(b,mmseline(25,90));
d = mmdil(c,mmseline(25,-90));
mmshow(d);
![]() |
|
| d |
The markers are the regional minima with contrast 25.
e = mmhmin(d,25);
f = mmregmin(e);
mmshow(f);
![]() |
|
| f |
Watershed of the original image from the dark stripes markers just created. Show the result overlayed on the original image.
g = mmcwatershed(a,f);
mmshow(a,mmdil(g));
![]() |
|
| a,mmdil(g) |
The watershed of the gradient of the original image, taking the marker just created, gives the extend of the white regions.
j = mmcwatershed(i,h,mmsebox);
mmshow(a,j);
![]() |
|
| a,j |
The watershed regions area computed. The area of each watershed regions is measured and displayed.
k = mmcwatershed(i,h,mmsebox,'REGIONS');
mmlblshow(k,'border');
l = mmblob(k,'area');
mmshow(l);
![]() |
![]() |
|
| k,'border' | l |
To select only the fabric spacing, select the regions with small area (less than 2000). Label the narrow regions.
m = mmcmp(l,'<=',2000);
Warning: converting image from scalar to uint16
mmshow(m);
n = mmlabel(m,mmsebox);
mmlblshow(n,'border');
![]() |
![]() |
|
| m | n,'border' |
| [mmdcornea] [Up] [mmdfila] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |