Types of Image Segmentation
Types of Image Segmentation
Types of Image Segmentation
Simple Thresholding
Otsu’z Binarization
Adaptive Thresholding
Region Growing:
It’s Bottom to up method where we begin a similar set of pixel and star
accumulating or iteratively merging it based on certain pre-determined
similarity constrain. Region growing algorithm starts with choosing an
arbitrary speed pixel in the image and compare it with its neighboring
pixel. If there is match & similarity in neighbor pixel, then they are
added to the initial seed pixel, thus increasing the size of Region. When
we reach the saturation and hereby the region of the growth cannot
proceed further, the algorithm choose another seed pixel, which
necessary does not belongs any region that currently exit & start the
process again.
Gradient Method:
An image gradient is a directional change in the intensity or color in a
image. The gradient of the image is a one of the fundamental building
block in image processing. For example, the canny edge detector uses
image gradient for edge detection.
Edge detection algorithm fall primarily two categories – gradient based
method & Gray histograms. Basic edge detection operates like sobel
operator, canny, Robert’s variables etc. are used in these algorithm.
-------------***------------