I'm looking for a good solution how to segment large areas of similar gray shades in opencv in a video stream.

This is my image for example:

enter image description here

To get this image i already did histogram equalization. I want to detect that area in the middle. Which is a big gray area, but it still differs in shades of gray.

Applying a threshold is not a solution because the area can be light gray, or darkgray, well any kinds of gray. But the area will have more or less the same gray all over the area. I've tried adaptive thresholding in opencv but i don't get a good result:

enter image description here

I also tried canny . But the result is also bad.

So my question is how can i segment an area of similar gray properly in opencv ?

Thx in advance

link|improve this question

feedback

1 Answer

A good way of segmenting out such an area would be to build a bank of Gabor Filters that can be applied to the image, check responses of each gabor filer, with a collective response in an area that is close to the surrounding of each Gabor filter, you can crave out the desired part.

1- Builde Gabor Filters of different orientations and sizes 2- Apply them to the image, 3- Measure the response of each filter. 4- Responses of each filter within a close vicinity should reasonably close to one another. 5- Then do the segmentation.

Hope this helps.
You can find more info on Gabor filters Here

link|improve this answer
Hi, thank you for your answer. Though I was more thinking in the line of some opencv function. I didn't find anything regarding gabor filters. – Ojtwist Dec 5 '11 at 17:29
You will have to build the gabor filters yourself. It will be tricky in the beginnig. – Wajih Dec 6 '11 at 9:55
feedback

Your Answer

 
or
required, but never shown

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