HOW TO SEGMENT TWO OVERLAPPING CHARACTERS USING CURVED LINE SEGMENTATION?
1 回表示 (過去 30 日間)
古いコメントを表示
hello everyone! Can anyone help me or guide me through segmentation of overlapping characters?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/159730/image.png)
Straight segmentation is not an option as some part of the characters will be lost. thank you!
0 件のコメント
採用された回答
Image Analyst
2014 年 3 月 29 日
I'm sure this has already been figured out before and published here: http://iris.usc.edu/Vision-Notes/bibliography/contentschar.html#OCR,%20Document%20Analysis%20and%20Character%20Recognition%20Systems Find the paper and code it up.
Whatever I suggest might not be the best approach. But just to toss a few ideas out there...
You could find the shortest path from top to bottom using bwdistgeodesic. See Steve's blog: http://blogs.mathworks.com/steve/2011/11/01/exploring-shortest-paths-part-1/
You could use "seam carving" - Google it.
You could try to connect nearby blobs using a tall, narrow kernel and imclose. Then do connected components labeling with bwlabel. Then AND those blobs with the original image.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Particle & Nuclear Physics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!