segmenting image help please
显示 更早的评论
This is my code
Segout = imread('abc.jpg');
>> imshow(Segout);
>> BW=im2bw(Segout);
>> figure,imshow(BW)
>> dim=size(BW)
1 个评论
darova
2020-3-24
Why did you remove your question? Can you restore?
回答(1 个)
darova
2020-3-23
I just found red color
I0 = imread('image.jpeg');
c1 = I0(:,:,1) > 160;
c2 = I0(:,:,2) < 60;
c3 = I0(:,:,3) < 60;
ix = c1 & c2 & c3;
I1 = I0 .* uint8(cat(3,ix,ix,ix));
imshow(I1)

类别
在 帮助中心 和 File Exchange 中查找有关 Image Thresholding 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!