Reputation: 249
In image processing, how region growing and clustering differ from each other ? Give more information on how they differ. Thank you for reading
Upvotes: 3
Views: 2366
Reputation: 1
I found region growing similar to some clustering algorithm. I explained my view point below:
In region growing there are 2 cases:
Upvotes: 0
Reputation: 842
Region growing : You have to select seed points and then the local area around the seed is analyzed in order to know if the neighbor pixels should have the same label. http://en.wikipedia.org/wiki/Region_growing It can be used for precise image segmentation.
Clustering :
There are many clustering techniques (k-means, hierarchical clustering, density clustering, etc.). Clustering algorithms don't ask to input seed points because they are based on unsupervised learning.
It can be use for coarse image segmentation.
Upvotes: 2