remove objects in image that have larger columns than rows
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Masar Uthaib
le 27 Déc 2019
Commenté : Masar Uthaib
le 27 Déc 2019
Hello
how can remove objects in image that have larger columns than rows in RGB
images .
Thank you
2 commentaires
Réponse acceptée
Image Analyst
le 27 Déc 2019
Use regionprops(), and ismember():
labeledImage = bwlabel(binaryImage);
props = regionprops(labeledImage, 'BoundingBox');
bb = vertcat([props.BoundingBox]);
% See if column width > height
widths = bb(:, 3);
heights = bb(:, 4);
goodLabelsIndexes = find(widths <= heights); % And discard if widths > heights
% Remove bad blobs
binaryImage = ismember(labeledImage, goodLabelsIndexes);
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
maskedRgbImage = bsxfun(@times, rgbImage, cast(binaryImage, 'like', rgbImage));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!.jpeg)
