Does anyone know of an algorithm that can detect rings or hollow objects, and their respective pixel sets for binary images?

I'd rather it be automatic due to the sheer number and minute size the of hollow artefacts (fingerprints processed with boundary extraction).

I'm currently working out a pixel connection algorithm that should give results, however it is by no means efficient in terms of performance.

link|improve this question
You mean a field of zeroes surrounded by ones, or something more complex? – IVlad Feb 16 '11 at 0:55
Yes, a field of zeroes surrounded by ones. – braedy. Feb 16 '11 at 0:58
feedback

1 Answer

Have you tried using something like OpenCV's cvFindContours?

Here is an example that uses it to locate ellipses/circles. I don't think it would be very difficult to extend it to look for rings -- you would just have to match up two contours of different sizes with approximately the same center.

If you're after a framework-agnostic approach, then have a read of the paper that cvFindContours is based on:

"Topological structural analysis of digitized binary images by border following" Satoshi Suzuki and Keiichi Abe. [suzuki85]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.