Detecting crosses in an image

Posted by MrOrdinaire on Stack Overflow See other posts from Stack Overflow or by MrOrdinaire
Published on 2012-03-24T18:35:28Z Indexed on 2012/03/24 23:29 UTC
Read the original article Hit count: 173

Filed under:
|
|
|

I am working on a program to detect the tips of a probing device and analyze the color change during probing. The input/output mechanisms are more or less in place. What I need now is the actual meat of the thing: detecting the tips.

In the images below, the tips are at the center of the crosses. I thought of applying BFS to the images after some threshold'ing but was then stuck and didn't know how to proceed. I then turned to OpenCV after reading that it offers feature detection in images. However, I am overwhelmed by the vast amount of concepts and techniques utilized here and again, clueless about how to proceed.

Am I looking at it the right way? Can you give me some pointers?

Colored Image Image extracted from short video

Binary image with threshold set at 95 Binary version with threshold set at 95

© Stack Overflow or respective owner

Related posts about c

    Related posts about image-processing