0

I am having a person's face image which has extra luminescence while capturing the photo. I want reduce or remove the luminescence of the image so that face is clearly visible.

Example of the Image is :

enter image description here

enter image description here

I am using python and OpenCV to do it.I have converted it to gray scale and perform histogram equalization but it didn't give desired output.

1 Answers1

2

The images you want to correct are lost color information, overexposed regions become white. And you cant restore their color with traditional cv methods. The only way I see is to train GAN network for this task. But no guaranty that result will be perfect.

Andrey Smorodov
  • 10,481
  • 2
  • 34
  • 40