-
Notifications
You must be signed in to change notification settings - Fork 11
Readme.md
Multiple exposure fusion is a critical issue in computer vision. Additionally, this technique can be adopt in smart phone to demonstrate the image with high lighting quality. However, the original author didn't release the official implementation. In this repository, we try to re-produce the idea of DeepFuse, and fuse the under-exposure image and over-exposure image with appropriate manner.
The above image shows the training result. The most left sub-figure is the under-exposure image. The second sub-figure is the over-exposure image. The third one is the rendered result, and the most right figure is the ground truth which is compute by MEF-SSIM loss concept. As you can see, the rough information of dark region and light region can be both remained.
You should notice that this is not the official implementation. There are several different between this repository and the paper:
- Since the dataset that author used cannot be obtained, we use HDR-Eye dataset which can also deal with multiple exposure fusion problem.
- Rather use 64*64 patch size, we set the patch size as 256*256.
- We only train for 20 epochs.
- The calculation of y^hat is different. The detail can be found in here.
Usage