Region growing

Region growing

Region growing is one of the simplest region-based image segmentation methods and it can also be classified as one of the pixel-based image segmentations because it involves the selection of initial seed points.

This approach to segmentation examines the neighboring pixels of the initial “seed points” and determines if the pixel should be added to the seed point or not. The process is iterated as same as data clustering. We describe the algorithm as below.

Region-Based Segmentation

The main goal of segmentation is to partition an image into regions. Some segmentation methods such as "Thresholding", achieve the goal by looking for the boundaries between regions based on discontinuities in gray levels or color properties. Region-based segmentation is a technique finding the region directly. Here are the basic formulation for Region-Based Segmentation:

(a) ext{ }igcup olimits_{i=1}^{n}{R_{i}=R.}

(b)R_{i} ext{ is a connected region}, ext{ i}= ext{1}, ext{ 2}, ext{ }..., ext{n}

(c) ext{ }R_{i}igcap R_{j}=varnothing ext{ for all }i=1,2,...,n.

(d)P(R_{i})=TRUE ext{ for }i=1,2,...,n.

(e)P(R_{i}igcup R_{j})=FALSE ext{ for any adjacent region }R_{i} ext{ and }R_{j}.

P(R_{i}) is a logical predicate defined over the points in set P(R_{k}) and varnothing is the null set. (a) indicates that the segmentation must be complete; that is, every pixel must be in a region.

(b) requires that points in a region must be connected in some predefined sense.

(c) indicates that the regions must be disjoint.

(d) deals with the properties that must be satisfied by the pixels in a segmented region-for example R_{i}= ext{TRUE} if all pixels in R_{i} have the same gray level.

And the condition (e) indicates that region R_{i} and R_{j} are different in the sense of predicate P.

Basic Concept of Seedpoints

First of all, we choose a set of seed points. And the initial region now is the exact location of these seeds.

Then the regions are grown from these seed points to adjacent points depending on a threshold or criteria we make. The threshold could be made by user. It could be intensity, gray level texture, or color.

Since the regions are grown on the basis of the threshold, the image information is important for us. For example, getting to know the histogram of the image would help us a lot since we can take it as a reference to choose the threshold.

There is a very simple example followed below. Here we use 4-connected neighborhood to grow from the seed points. We can also choose 8-connected neighborhood for our pixels adjacent relationship. And the criteria we make here is the same pixel value. That is, we keep examining the adjacent pixels of seed points. If they have the same intensity value with the seed points, we classify them into the seed points. It is a iterated process until there are no change in two successive iterative stages. Of course, we can make other criteria, but the main goal is to classify the similarity of the image into regions.

ome Important Issues

Then we can conclude several important issues about region growing

1.The suitable selection of seed points is important. The selection of seed points is depending on the users. For example, in a gray-level lightning image, we may want to segment the lightning from the background. Then probably, we can examine the histogram and choose the seed points from the highest range of it.

2.More information of the image is better.

Obviously, the connectivity or pixel adjacent information is helpful for us to determine the threshold and seed points.

3.The value, “minimum area threshold”.

No region in region growing method result will be smaller than this threshold in the segmented image.

4.The value, “Similarity threshold value“.

If the difference of pixel-value or the difference value of average gray level of a set of pixels less than “Similarity threshold value”, the regions will be considered as a same region.

The criteria of similarities or so called homogeneity we choose are also important. It usually depends on the original image and the segmentation result we want.

Here are some criteria we often use:"Gray level"(average intensity or variance), "color", and "texture" or "shape".

imulation Examples

Here we show a simple example for region growing.

Figure. 1 is the original image which is a gray-scale lightning image. The gray-scale value of this image is from 0 to 255. The purpose we apply region growing on this image is that we want to mark the strongest lightning part of the image and we also want the result is connected without being splitted apart. Therefore, we choose the points having the highest gray-scale value which is 255 as the seed points showed in the Figure. 2.

After determining the seed points, we have to determine the range of threshold. Always keeps in mind that the purpose we want to do is to mark the strongest light in the image. The third figure is the region growing result from choosing the threshold between 225 and the value of seed points (which is 255). It means we only want to mark out the points whose gray-scale values are above 225.

If we make the range of threshold wider, we will get a result having a bigger area of the lightning region show as the Figure. 3 and the Figure. 4.

We can observe the difference between the last two figures which have different threshold value showed above. Region growing provides the ability for us to separate the part we want connected.

As we can see in Figure. 3 to Figure. 5, the segmented result in this example are seed-oriented connected. That means the result grew from the same seed points are the same regions. And the points will not be grown without connected with the seed points in the beginning.Therefore, we can mention that there are still lots of points in the original image having the gray-scale value above 155 which are not marked in Figure. 5.This characteristic ensures the reliable for the segmentation and provides the ability to resist from noise. For this example, this characteristic prevents us marking out the non-lightning part in the image because the lightning is always connected as one part.

The Advantages and Disadvantages of Region Growing

We briefly conclude the advantages and disadvantages of region growing.

Advantages:

1. Region growing methods can correctly separate the regions that have the same properties we define.

2. Region growing methods can provide the original images which have clear edges the good segmentation results.

3. The concept is simple. We only need a small numbers of seed point to represent the property we want, then grow the region.

4. We can determine the seed points and the criteria we want to make.

5. We can choose the multiple criteria at the same time.

6. It performs well with respect to noise.

Disadvantage:

1. The computation is consuming, no matter the time or power.

2. Noise or variation of intensity may result in holes or oversegmentation.

3. This method may not distinguish the shading of the real images.

We can conquer the noise problem easily by using some mask to filter the holes or outlier. Therefore, the problem or noise actually does not exist. In conclusion, it is obvious that the most serious problem of region growing is the power and time consuming.

Reference

* Jian-Jiun Ding, The class of "Time-Frequency Analysis and Wavelet Transform", the Department of Electrical Engineering, National Taiwan University (NTU), Taipei, Taiwan, 2007.

* Jian-Jiun Ding, The class of "Advanced Digital Signal Processing", the Department of Electrical Engineering, National Taiwan University (NTU), Taipei, Taiwan, 2008.

* W. K. Pratt, "Digital Image Processing 4nd Edition", John Wiley & Sons, Inc., Los Altos, California, 2007

* M. Petrou and P. Bosdogianni, "Image Processing the Fundamentals", Wiley, UK, 2004.

* R. C. Gonzalez and R.E. Woods, "Digital Image Processing 2nd Edition", Prentice Hall, New Jersey, 2002.

ee Also

* image segmentation

* data clustering

* k-means algorithm

* watershed algorithm


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Region Growing — ist ein Bildsegmentierungsverfahren. Ablauf Bei diesem Verfahren werden homogene Bildelemente zu Regionen verschmolzen. Zuerst wird das Bild in initiale Zellen (1×1, 2×2 oder 4×4 Pixel) unterteilt. Beginnend mit der Wahl einer initialen Zelle als …   Deutsch Wikipedia

  • Region growing — ist ein Bildsegmentierungsverfahren. Ablauf Bei diesem Verfahren werden homogene Bildelemente zu Regionen verschmolzen. Zuerst wird das Bild in initiale Zellen (1×1, 2×2 oder 4×4 Pixel) unterteilt. Beginnend mit der Wahl einer initialen Zelle als …   Deutsch Wikipedia

  • Growing Pains — This article is about the television series. For other uses, see Growing Pains (disambiguation). Growing Pains The original cast of Growing Pains (from left to right), Alan Thicke as Jason, Joanna Kerns as Maggie, Jeremy Miller as Ben, Kirk… …   Wikipedia

  • Growing region — A growing region is an area suited by climate and soil conditions to the cultivation of a certain type of crop. Most crops are cultivated not in one place only, but in several distinct regions in diverse parts of the world. Cultivation in these… …   Wikipedia

  • Growing Up Live — Infobox music DVD Name = Growing Up Live Type = Artist = Peter Gabriel Released = Nov. 4, 2003 Recorded = May 2003 Rating = Genre = Rock Region = Length = 134 mins Label = Geffen (US Canada) Virgin Video Director = Hamish Hamilton Producer = Ian… …   Wikipedia

  • Growing Up Creepie — Infobox television show name = Growing Up Creepie format = Animated children s television series runtime = 22 minutes creator = Anthony Gaud Chris Woods Carin Greenberg starring = Athena Karkanis Richard Yearwood Julie Lemieux Dwayne Hill Leah… …   Wikipedia

  • Région autonome du Tibet — 31° 42′ 20″ N 86° 56′ 25″ E / 31.7056, 86.9403 …   Wikipédia en Français

  • growing zone — noun 1. : a zone in front of the anus in certain annelid worms from which new segments are proliferated 2. : a region behind the scolex in tapeworms similar in function to the growing zone in annelid worms …   Useful english dictionary

  • Region (Europe) — The European Union created the Committee of the Regions to represent Regions of Europe as the layer of EU government administration directly below the nation state level. The Committee has its headquarters in Brussels.Reasons for this include: *… …   Wikipedia

  • AA Region II — Region II is one of the four AA regions in the Virginia High School League. It is made up of three districts: the AA Dulles District, the AA Jefferson District, and the AA Northwestern District. The geography of the region stretches from Northern …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”