cvNormalizeHist()函数详解!

英文版

C: void cvNormalizeHist(CvHistogram* hist, double factor)

Parameters
hist – Pointer to the histogram.
factor – Normalization factor.
The function normalizes the histogram bins by scaling them so that the sum of the bins becomes equal to factor.


中文版

void cvNormalizeHist( CvHistogram* hist, double factor );
hist – 直方图的指针.
factor – 归一化因子
函数 cvNormalizeHist 通过缩放来归一化直方块,使得所有块的和等于 factor.

参考自文章:http://blog.sina.com.cn/s/blog_9dff1a7501014tdp.html 此篇文章中有更多OpenCV作直方图处理的函数的介绍!

---------------------------------------------------------------------------

欢迎大家加入图像识别技术交流群:271891601,另外,特别欢迎成都从事图像识别工作的朋友交流,我的QQ号248787278

你可能感兴趣的:(cvNormalizeHist)