[Solved] How to get an image of each letter from image with text [closed]
As a basic technique, use binarization and connected component analysis. This will give you “blobs” corresponding to the individual characters and you can get their bounding boxes. You will face extra difficulties: some characters can touch and form a single blob. You will need some detection logics to split them, for instance based on size … Read more