Ask Your Question
0

Finding an arrow in an archery target picture

asked 2013-07-16 17:32:08 -0600

Edward gravatar image

I'm working on a project where I need to find the arrows in a picture of an archery target. I thought that the best way would be to use the Hough Line Transformation, but that doesn't seem to be giving any results. Bellow is an example image I am working with. If anyone who has a better understand of image processing and could advise on how they would go about doing this that would be great!

image description

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
1

answered 2013-07-17 07:29:59 -0600

There is a 3D technique called shape from shading, which could be interesting for you. However, this can only be done with a stereo camera setup and images of different positions.

edit flag offensive delete link more

Comments

This sounds interesting but unfortunately I can only use one image such as above.

Edward gravatar imageEdward ( 2013-07-17 16:39:48 -0600 )edit

Then what I would do is the following approach.

 1. First apply hough circle detection to your image.
 2. Then apply hough lines detection to your image.
 3. Create some logic that retrieves lines that are almost perpendicular to the circles.
 4. The largest one will give you the shadow, the smallest one the arrow?

Go ahead and try :)

StevenPuttemans gravatar imageStevenPuttemans ( 2013-07-18 01:59:22 -0600 )edit

Question Tools

Stats

Asked: 2013-07-16 17:32:08 -0600

Seen: 1,096 times

Last updated: Jul 17 '13