gabrieleilertsen / hdrcnn

HDR image reconstruction from a single exposure using deep CNNs
https://computergraphics.on.liu.se/hdrcnn/
BSD 3-Clause "New" or "Revised" License
502 stars 101 forks source link

does this method support reconstruction from dark images #8

Closed guoyejun closed 6 years ago

guoyejun commented 6 years ago

Hi,

I just found this great paper and start reading. Will try the code after the reading.

As far as I understand, the reconstruction is to build more details from both the bright image parts and the dark image parts. But in the second paragraph of INTRODUCTION of this paper, it only mentions the 'bright image parts, such as highlights, lost due to saturation of the camera sensor'. It gives me the sense that the image dark parts are not supported. It it right? thanks

gabrieleilertsen commented 6 years ago

Yes, that is correct. The method focuses on only the saturated image areas. The final result is a blend between linearized input image in darker areas, and reconstructed information close to saturated image areas. By focusing on saturated pixels, we can allow for better quality, and this information is the most important when transforming an LDR image to HDR.

guoyejun commented 6 years ago

got it, thanks for the reply!