What is a good method to segment characters that are united as in the following figure, knowing that:
- characters have this font, but the font size varies based on the image size
- only isolated groups of characters from the image are connected
Also, how can i detect if in a given bounding box, there are 2 or more letters which are connected?
I tried with checking for width > height for detecting connected characters but it doesn't work for the blue groups in the image.
I also tried a segmentation method based on: Article section 3.4 for separating characters but got poor results.