How to draw represent connected components bounding boxes with different color??
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm working on handwritten documents,so I want to show bounding boxes of different line with different color. I've a matrix which contains the connected components values and I want to color bounding boxes using this color.
4 commentaires
Réponses (1)
Image Analyst
le 17 Avr 2019
Use plot(xBox, yBox, 'Color', yourColor), or rectangle('Position', bb, 'EdgeColor', yourColor) or something like that. xBox is obtained from the bounding box like
props = regionprops(binaryImage, 'BoundingBox');
for k = 1 : length(props)
bb = props(k).BoundingBox);
xBox = [bb(1), bb(1)+bb(3), bb(1)+bb(3), bb(1), bb(1)];
yBox = [bb(2), bb(2), bb(2)+bb(4), bb(2)+bb(4), bb(2)];
plot(xBox, yBox, 'Color', rand(1,3));
hold on;
end
If you still can't figure it out, write back.
5 commentaires
Image Analyst
le 18 Avr 2019
Yes, my code should do that assuming you have rows and columns for where you want to put the boxes.
Again, I don't see a question in your comment (i.e. a sentence ending with a question mark), but if you want to colorize blobs, use label2rgb(). Then you can make each box have the same color as the blob if you want to.
Voir également
Catégories
En savoir plus sur Line Plots 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!