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?
|
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?
| ||||
feedback
|
|
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. | |||||||
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. | |||
|
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. | |||||||||
feedback
|