Hello,
I'm trying to enhance an image, using contrast. But the result is very noise in the enhanced image; like salt and pepper, only bigger and annoying.
I need to find Contrast, which uses mean
C=(L-M)/(L+M);
I'm using moving window to find mean at each pixel M(x,y), so that I can find contrast at each pixel C(x,y).
However, using matlab function mean2(I) results get a lot of noise in the image.
I tried using a bigger window, to a little use only.
So, can anyone suggest to me what I can do to remove that noise from the image?