I'm working on an OCR program for one of my classes and I'm trying to find circular closed regions in the text to classify characters. Words have already been skeletonized. For example, in this image: http://i.imgur.com/VLHJp.jpg
I'd like to find the location of the circular O or even the half circle in the E. I've attempted to convert the pixels into an array and then loop through all the white pixels, finding closed paths but this didn't work. I might not have implemented this correctly however. Any other solutions? Thanks in advance.
Edit:
Unfortunately I cannot use Tesseract or other OCR programs because I have to develop my own for my college class. I've used the AForge library to do many tasks such as the skeletonization and wanted to use the circle detection or shape detection classes there but these shapes are too obtuse to work with that.