imshow() for multiple selected objects
조회 수: 3 (최근 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에서 Red에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!