Nt/split HTM
Nt/split HTM
uk/rbf/CVonline/LOCAL_COPIES/MARBLE/medium/segme
nt/split.htm
Splitting and merging attempts to divide an image into uniform regions. The basic
representational structure is pyramidal, i.e. a square region of size m by m at one
level of a pyramid has 4 sub-regions of size by below it in the pyramid.
Usually the algorithm starts from the initial assumption that the entire image is a
single region, then computes the homogeneity criterion to see if it is TRUE. If
FALSE, then the square region is split into the four smaller regions. This process is
then repeated on each of the sub-regions until no further splitting is necessary.
and is the mean intensity of the N pixels in the region. Whereas splitting is quite
simple, merging is more complex. Different algorithms are possible, some use the
same test for homogeneity but others use the difference in average values.
Generally, pairs of regions are compared, allowing more complex shapes to
emerge.
A program in use at Heriot-Watt is spam ( split and merge) which takes regions a
pair at a time and uses the difference of averages to judge similarity, i.e. merge
region A with neighbouring region B if the difference in average intensities of A
and B is below a threshold.