ContrastStretching |
Contrast Stretching is pretty similar to Histogram Equalization, but rather that computing pixel
intensity probability & corresponding CDF values, we'll go for stretching pixel intensity range,
which may be intially `a` & `b`, where a > 0 && or || b < 255, but we'll make it 0 to 255.
|
GammaCorrection |
Given an image ( either color or grayscaled ), we'll transform each pixel intensity of that image
using power law transformation / gamma correction function.
|
HistogramEqualization |
Applies histrogram equalization transformation to distribute pixel intensity values all over
whole range of possible pixel values ( i.e.
|
InverseImageTransformation |
Given a buffered image, applies inverse image transformation function on each pixel of it, and
produces output buffered image
|
InverseLogTransformation |
Inverse log transformation just works opposite of Log Transformation, it reduces pixel intensity
values, which eventually makes image darker
|
LogTransformation |
Given an image ( either color or grayscaled ), we'll trasform each pixel intensity value by using
one logarithm based function & output image to be buffered.
|