Kmeans vs imsegkmeans, what the difference?
13 次查看(过去 30 天)
显示 更早的评论
Hi, Im currently working on image segmentation and was wondering what the difference bewtween the two functions is?
1 个评论
Adam
2020-1-13
I imagine they use the same code under the hood, though each is only available in a specific toolbox and imsegkmeans looks like it is just a helpful wrapper function that does some of the work for you, mostly in terms of repeatability, judging from the top at the bottom. By default kmeans uses randomness in initialisation which means it will give different results each time, whereas imsegkmeans apparently does not do this and returns repeatable results each time. You can parameterise kmeans to do this also, it just isn't the default behaviour.
采纳的回答
Ganesh Regoti
2020-1-13
As per my understanding, there is not much difference in the underlying functionality of both kmeans and imsegkmeans as both does clustering of data.
imsegkmeans clusters the image based on the color of each pixel of that image.
kmeans clusters the data into given number of clusters. You can replicate the functionality of imsegkmeans with kmeans with some pre-processing.
You can refer following links to understand more about them
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!