[mmhistogram] [Up] [mmblob] Measurements

mmlabel
Label a binary image.

Synopsis

y = mmlabel ( f , Bc = NullStrel )

Input

f Image Binary image

Bc Structuring Element

( connectivity).

Default: NullStrel (3x3 elementary cross)

Output

y Image

If number of labels is less than 65535, the data type is uint16, otherwise it is int32.

Description

mmlabel creates the image y by labeling the connect components of a binary image f, according to the connectivity defined by the structuring element Bc. The background pixels (with value 0) are not labeled. The maximum label value in the output image gives the number of its connected components.

This implementation is very fast and is based on the algorithm proposed in [SB98].

Examples

Numerical Example
f=mmbinary([[0,1,0,1,1],[1,0,0,1,0]])
g=mmlabel(f)
print g
[[0 1 0 2 2]
 [3 0 0 2 0]]
Image Example

The maximum label value gives the number of connected blobs in the image.

f = mmreadgray('blob3.tif')
g=mmlabel(f)
nblobs=mmstats(g,'max')
print nblobs
18.0
mmshow(f)
mmlblshow(g)
f g

Equation

Where H is the number of image rows, and y1 and y2 are the row and column coordinates respectively.

See also

mmlabelflat Label the flat zones of gray-scale images.
mmfreedom Control automatic data type conversion.
mmsebox Create a box structuring element.
mmsecross Diamond structuring element and elementary 3x3 cross.
mmareaopen Area opening
mmblob Blob measurements from a labeled image.
mmgrain Gray-scale statistics for each labeled region.
[mmhistogram] [Up] [mmblob]