Performing histogram alignment processing using C ++ opencv

I need to do the histogram alignment on the image, I made a histogram and I calculated the count of each pixel but I don’t know how to do the histogram alignment can anyone help I use opencv Thnx

+3
source share
1 answer

Thanks, I found it.

cvEqualizeHist(src,dest);
+5
source

Source: https://habr.com/ru/post/1724815/


All Articles