Ask Your Question
0

Need help about extracting a circular portion from image

asked 2013-04-20 10:19:48 -0600

hayden gravatar image

Hello, I am quite new in OpenCV. I have an image with a faint white border marked with a red arrow as shown in the following linkimage description. I would like to find the circle. How to find it in OpenCV?

edit retag flag offensive close merge delete

Comments

I doubt that houghCircles (http://docs.opencv.org/modules/imgproc/doc/feature_detection.html?highlight=houghcircle#houghcircles) will help you with your kind of picture, but you could try it.

Guanta gravatar imageGuanta ( 2013-04-20 11:51:19 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
1

answered 2013-04-20 13:40:53 -0600

I was wondering what sort of sensor gives you this output and what you are looking for (if it's not a secret). As mentioned in comment by @Guanta, the standard way to search for circles is to use Hough transform houghCircles. But in your case the noise is probably too high.

If you have access to gray-scale pixel values you may thing about some image filtering and apply Hough transform on the filtered image.

edit flag offensive delete link more

Comments

I have uploaded the original image to the following link: http://i35.tinypic.com/16kozua.png

I would like to extract the portion marked by red arrow.

hayden gravatar imagehayden ( 2013-04-20 14:14:58 -0600 )edit

Question Tools

Stats

Asked: 2013-04-20 10:19:48 -0600

Seen: 345 times

Last updated: Apr 20 '13