How to calculate Dynamic range of an Image using Opencv? What is the value of good dynamic range? How to calculate it using opencv?
The dynamic range of an image is the log2 (as it is expressed in EVs) of the difference between the max and min lightness values; considering that the image is encoded with a linear response model.
With OpenCV you can access the pixel values of your image, so iterate and apply the formula.