Ok my work is divided in three parts:
I applied wavelet transform on an Image
I changed (enhanced) the LL area
I applied Inverse wavelet transform
I've expected to get an enhanced image but in part 3 when I applied it the range of image went to e.g.[-30,255]
Way 1: I normalized it Like:
img=((img+Min)/Max)*255
I applied it for each channel and then it goes to the range [0,255] but after that, the image covered by gray layer.
way 2: if I just set them to zero then the borders go bold.
anybody can help me what should I do?