Connecting isolated objects in an image
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I have the following image extracted from a screen
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148756/image.jpeg)
Unfortunately, the individual digits are not wholly connected objects, e.g - the '5', '2', '8', etc are not continuous. I intend to extract the individual digits using a bounding box. But for that, each of the digits have to be 1 connected object. How to connect the different segments of each digit? I tried using the 'thicken' utility of bwmorph function but there though the thickening is happening, the segments are not getting connected since the Euler number is preserved in 'thicken'. I have been using the imdilate function but the structuring element for proper dilation keeps on varying from image to image. Please suggest a generalized solution how to connect the segments of an individual digit ??
0 件のコメント
回答 (1 件)
Image Analyst
2013 年 7 月 1 日
Seems very similar to questions you have been asking for months now. But, assuming you have a relatively level, aligned image, I'd sum the digits vertically
horizontalProfile = sum(binaryImage, 1);
plot(horizontalProfile, 'b-');
grid on;
and examine the profile to see where there are low value places - they'll be the spaces between the digits. Use those locations to crop your image.
2 件のコメント
Image Analyst
2013 年 7 月 3 日
Once you have cropped out a digit, if your digit is comprised of an arbitrary number and arrangement of blobs, you'd be best off having a template of "pixels" to look in for each digit 0 - 9 plus the decimal point and underline symbols. No matter if a digit is "broken" it will most likely have more pixels inside the template than any other digit. So you can test the cropped image against each template and the digit that has the highest number of "hits" inside your template shape will be the digit that it is. For example, have a binary image of a 5 that is composed of a bunch of broken, disconnected blobs. You test that image against templates for 0, 1, 2, etc. up to 0 and you'll find that the 5 will have the most number of "hits" in it, whereas a 1, say, won't have as many hits.
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!