Gamma Correction#
これは、画像の暗い領域を明るくする非線形操作です。
仕組み#
When you enable the GammaCorrection
parameter, a gamma of 0.4 (= 1 / 2.5) is applied to the intensity image. The resulting data is scaled to preserve the original full-scale 16-bit image. The following formula illustrates this:
OUT = (216 - 1) * (IN / 216 ) ^ (1 / 2.5)