-
Andrey Kamaev authored
Old implementation did lut[i] = 255 * (count(Y <= i)) / (width * height) which actually shifts uniform histograms. From now histogram is equalized as C = count(Y == min(Y)) lut[i] = 255 * (count(Y <= i) - C) / (width * height - C)
0bbba847
Name |
Last commit
|
Last update |
---|---|---|
.. | ||
doc | ||
include/opencv2/imgproc | ||
perf | ||
src | ||
test | ||
CMakeLists.txt |