zl程序教程

您现在的位置是:首页 >  其它

当前栏目

OpenCV1.X的直方图归一化函数cvNormalizeHist()的参数意义

函数 参数 意义 直方图 归一化
2023-09-11 14:15:39 时间

原型如下:

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.

翻译:

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