imshow() for multiple selected objects
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I have an image with ~200-250 labeled objects. How can I use imshow() to display multiple selected objects?
When I try this:
imshow(LL == 200)
It works to show the object labeled 200. Say I want to see 200 and 201. I tried:
imshow(LL == 200)
hold on
imshow(LL == 201)
This erases 200 and shows just 201.
Thanks for your suggestions and tips!
0 个评论
采纳的回答
Ameer Hamza
2020-10-6
image(): https://www.mathworks.com/help/matlab/ref/image.html is better suited for this case. Or even pcolor(): https://www.mathworks.com/help/matlab/ref/pcolor.html.
11 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Basic Display 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!