I am unable to bound the text lines in a rectangle
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi Imageanalyst,
I want to bind my text lines in a rectangle and want to store that rectangle for use. This is my code , can you rectify my code.
a=imread('sample.jpg'); figure,imshow(a) b=rgb2gray(a); Ibw= b<128; Ibw = imclose(Ibw, true(7)); [Ilabel num] = bwlabel(Ibw); Iprops = regionprops(Ilabel); Ibox = [Iprops.BoundingBox]; imshow(Ibw) rectangle('position',Ibox,'edgecolor','r');
Thanks
1 commentaire
Image Analyst
le 9 Jan 2014
Modifié(e) : Image Analyst
le 9 Jan 2014
Plus, you forgot to attach sample.jpg - please attach it.
Réponses (1)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!