how to find the width and height of text block
Show older comments
plz help me to find the width and height of a text block. m doing project on text detection using canny edge detector. as a post processing step, i need to perform false positive elimination,to remove unwanted image parts.
2 Comments
Dishant Arora
on 28 Feb 2014
Do you mean individual letters by text block??
Akshatha
on 1 Mar 2014
Answers (1)
Dishant Arora
on 28 Feb 2014
Call in regionprops and checkout for boundingbox.
Stats = regionprops(BW , 'BoundingBox');
[width , height] = Stats(ii).BoundingBox(3:4); % ii being index of your blob.
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!