HOW TO SEGMENT TWO OVERLAPPING CHARACTERS USING CURVED LINE SEGMENTATION?

2 views (last 30 days)
hello everyone! Can anyone help me or guide me through segmentation of overlapping characters?
Straight segmentation is not an option as some part of the characters will be lost. thank you!

Accepted Answer

Image Analyst
Image Analyst on 29 Mar 2014
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.
  9 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type 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!