I am using the Python image library for some basic image operations. I wish to do detect edges of an image, but only the thick ones.

How can I do this?

link|improve this question

50% accept rate
en.wikipedia.org/wiki/Edge_detection There are many algorithms you could use like this one: en.wikipedia.org/wiki/Sobel_operator – Flo Dec 5 '11 at 9:52
feedback

3 Answers

I think I would start by eroding the image in order to remove the thinner edges, leaving the thicker ones, and then edge detect. See erosion and dilation - may help.

link|improve this answer
hey, i tried your method and it did work for me. thanks. – Vishwanath Dec 9 '11 at 4:25
Just out of interest, which ersosion kernel/filter did you use? – Jeb Dec 23 '11 at 12:00
i use the following:{(0,1,0),(1,1,1),(0,1,0)}. Please suggest a better method if possible. – Vishwanath Dec 24 '11 at 12:48
feedback

I have a feeling thick edges will get detected as 2 edges - in which case you would have to do non-maximum suppression. Have you tried using a median filter or something which would throw out extremely thin edges? (Smoothing after median filter would suppress the thin edges quite a bit though I am a little unsure as to what would happen to the thick ones.)

Another idea would be to use a Hough Transform and keep the threshold high for the number of votes required to detect an edge/line.

link|improve this answer
feedback

What about rescaling your image to lower resolution and finding edges there?

Then you would recompute position of the edges by scaling back to the original size.

link|improve this answer
Hey, i like your idea, but is there any other non-brute method? – Vishwanath Dec 6 '11 at 12:08
Please show us some example of what you want to achieve. – Krab Dec 6 '11 at 16:57
@Vishwanath, this is actually a good "non-brute" technique. Take a look at the cvPyrDown function. Try applying it once, then performing edge detection on the resultant down-sampled image. – Throwback1986 Dec 7 '11 at 14:36
@Krab, i did try your method, but it does not kill the edges completely. I remember vaguely that opencv had some function to do such a work, can you please help me? – Vishwanath Dec 8 '11 at 5:11
feedback

Your Answer

 
or
required, but never shown

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