bwareaopen for RGB and binary

2 ビュー (過去 30 日間)
Tulips
Tulips 2012 年 10 月 29 日
hi sir, can I know how to use bwareaopen for RGB image. after I convert the rgb image to binary, do I need to put uint8 and [] when displaying the binary images?
[Merged information from duplicate question]
hi sir, may I know how to assign the conversion of rgb to binary. for instance,, I've used this coding but the output is all black,why is that:
%%Binary
im=uint(im)
figure;imshow(im,[])
%%remove pxls less than 100
pixels=100;
detectObject=uint8(bwareaopen,pixels)
figure;imahow(detectObject,[])

回答 (2 件)

Image Analyst
Image Analyst 2012 年 10 月 29 日
編集済み: Image Analyst 2012 年 10 月 30 日
That doesn't make sense. You don't use bwareaopen for RGB AND binary. You use it just for binary images.
You do not need to cast binary (logical) images to uint8 or use [] in imshow() for binary images.
Try
binaryImage = im < someThresholdValue;
detectObject = bwareaopen(binaryImage, pixels);
imshow(detectObject);
  5 件のコメント
Tulips
Tulips 2012 年 11 月 1 日
I just want to why after the conversion from rgb to binary , the used of bwrareaopen function produced all black images?I want to remove certain noise from the binary image.how can I do that , instead of using bwareaopen.thanks!
Image Analyst
Image Analyst 2012 年 11 月 1 日
Are you asking us to give advice on your image without showing us your image? How successful do you think we can be in that situation?

サインインしてコメントする。


Walter Roberson
Walter Roberson 2012 年 10 月 29 日
bwareaopen() is a function call that you need to apply to your data. You are instead calling it with no parameters, so it would be returning the empty matrix.

カテゴリ

Help Center および File ExchangePlatform and License についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by