|
Histogram equalization of input image. More...
Functions | |
AFAPI array | histequal (const array &in, const array &hist) |
C++ Interface for histogram equalization. More... | |
AFAPI array | histEqual (const array &in, const array &hist) |
C++ Interface for histogram equalization. More... | |
AFAPI af_err | af_hist_equal (af_array *out, const af_array in, const af_array hist) |
C Interface for histogram equalization. More... | |
Histogram equalization of input image.
Histogram equalization is a method in image processing of contrast adjustment using the image's histogram.
Data normalization via histogram equalization
C Interface for histogram equalization.
[out] | out | is an array with data that has histogram approximately equal to histogram |
[in] | in | is the input array, non-normalized input (!! assumes values [0-255] !!) |
[in] | hist | target histogram to approximate in output (based on number of bins) |
in
must be two dimensional. C++ Interface for histogram equalization.
[in] | in | is the input array, non-normalized input (!! assumes values [0-255] !!) |
[in] | hist | target histogram to approximate in output (based on number of bins) |
in
must be two dimensional. C++ Interface for histogram equalization.
[in] | in | is the input array, non-normalized input (!! assumes values [0-255] !!) |
[in] | hist | target histogram to approximate in output (based on number of bins) |
in
must be two dimensional.