Loading...
Implement exposure fusion to blend multiple exposures without HDR tonemapping, leveraging quality metrics to produce a seamless image. This technique is crucial in HDR Imaging as it allows for the combination of differently exposed images, capturing a wider dynamic range.
Exposure fusion directly blends images using weight maps based on contrast, saturation, and well-exposedness, which are calculated as C=∣∇I∣, S=std(R,G,B), and E=exp(−2σ2(I−0.5)2).
This technique is widely used in digital photography to capture high-contrast scenes.
images = [dark_exposure, medium_exposure, bright_exposure]
Fused image with details from all exposures