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:

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:

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