Summary: The simplest operator used to map an HDR image to an LDR image. For example, the simplest method for how to map a 32-bit range down to an 8-bit range is a basic quantizer.
Now that one has an HDR image, to be able to display it on conventional displays, one must map it back down to the range of an LDR image. This results from current display technologies, be CRT, LCD, or printer, can only display at most about 8-bits per color channel, around the LDR range. So, to be able to see the results of adding all this information together, one must map the high-dynamic range of 32-bits back to 8-bits.
The simplest way to perform this calculation is using a quantizer, to directly map ranges in the
where A is the HDR color matrix, H is the HDR (source) bitrate, and L is the LDR (destination) bitrate.
So in the case of 32-bit to 8-bit transformation, we would have:
Using this approach, we have the following result:
![]() |
Now that we have explored the most basic operator that just takes the HDR image straight back down to the LDR range without any intelligent methods to preserve the most information and dynamic range, we can explore more advanced operators in the following modules. For example, one way to improve upon this is to "move" the average brightness around of the entire image, so that if it is overexposed, we can correct to some extent to preserve the most amount of detail in the resulting LDR image. Beyond that, we can look at regions of the HDR image and map them down in an intelligent manner as to preserve the most amount of information in small areas of the resultant LDR image.