How to use k means segmentation to segment color image without converting it into gray scale?
1 view (last 30 days)
Show older comments
Architha L S
on 3 Mar 2018
Commented: Architha L S
on 5 Mar 2018
We are doing project on soil colour detection.Suppose in the image we have soil,trees & sky we should eliminate sky and trees and get only soil image for further processing. Which segmentation will be good for? Can we use k means? If yes please some one send k means algorithm for colour image processing. We tried with so many codes but we are able to get gray images.how to convert them back to rgb?
0 Comments
Accepted Answer
Image Analyst
on 3 Mar 2018
There are several ways of doing this. See my attached demos on kmeans() and classify().
kmeans() is usually a bad way to classify, as you'll see. Plus it's not robust since how well it works depends on how many of the colors you want are in your photo. Better is to do color segmentation like I do in my demos in my File Exchange. https://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc
More Answers (1)
Ahmet Cecen
on 3 Mar 2018
Read K-Means, especially the part about "X" (the input). An image is simply a 3 dimensional dataset. You should be able to figure out the next steps.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!