how to remove object that contain more than X% black pixels
1 回表示 (過去 30 日間)
古いコメントを表示
i have some roi and i want to remove roi that has more then 90% black pixels how can i do that???
0 件のコメント
回答 (1 件)
Image Analyst
2014 年 12 月 26 日
編集済み: Image Analyst
2014 年 12 月 26 日
Is your ROI in the form of a binary image? Are there multiple regions in that binary image? Just call regionprops and find blobs where the (FilledArea - Area) / FilledArea > 0.1.
labeledImage = bwlabel(binaryImage);
measurements = regionprops(labeledImage, 'FilledArea', 'Area');
allAreas = [measurements.Area];
allFilledAreas = [measurements.FilledArea];
darkRatios = (allFilledAreas - allAreas) / allFilledAreas;
darkIndexes = find(darkRatios > 0.1);
newLabeledImage = ismember(labeledImage, darkIndexes);
% Relabel
labeledImage = bwlabel(newLabeledImage > 0);
% Measure again with new blobs.
measurements = regionprops(labeledImage, 'FilledArea', 'Area');
3 件のコメント
Image Analyst
2014 年 12 月 27 日
It's only 9 lines of code, that do what you asked for.
If you really wanted OCR instead, then you should have said so initially and posted your image.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!