How to assign different colors to different labels?
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I saw in one paper that they are showing their segmentation results of different objects with different colors and overlayed on the input image. As you can see in the following image.
Could I ask how we can assign different colors to different labels obtained from a segmentation algorithms with different objects? I would like to do the same on the segmentation results that I am obtaining from my algorithm. I have 0 as background and labels 1-to-4 as 4 different objects. Your help is really appreciated.
Thanks
0 个评论
采纳的回答
Image Analyst
2017-11-25
See this snippet:
% Label each blob with 8-connectivity, so we can make measurements of it
[labeledImage, numberOfBlobs] = bwlabel(binaryImage, 8);
% Apply a variety of pseudo-colors to the regions.
coloredLabelsImage = label2rgb (labeledImage, 'hsv', 'k', 'shuffle');
% Display the pseudo-colored image.
imshow(coloredLabelsImage);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!