我为位于不同环境条件下的同一对象计算了100幅图像的H-S直方图(使用opencv),现在我需要这100幅直方图的一个平均直方图!
提前感谢
// we compute the histogram from the 0-th and 1-st channels
int channels[] = {0, 1};
calcHist( &hsv, 1, channels, Mat(), // do not use mask
hist, 2, histSize, ranges,
true, // the histogram is uniform
false );
double maxVal=0;
minMaxLoc(hist, 0, &maxVal, 0, 0);
int scale = 10;
Mat histImg = Mat::zeros(sbins*scale, hbins*10, CV_8UC3);
for( int h = 0; h < hbins; h++ )
for( int s = 0; s < sbins; s++ )
{
float binVal = hist.at<float>(h, s);
int intensity = cvRound(binVal*255/maxVal);
rectangle( histImg, Point(h*scale, s*scale),
Point( (h+1)*scale - 1, (s+1)*scale - 1),
Scalar::all(intensity),
CV_FILLED );
}
您可以尝试使用addWeighted并遍历直方图数组。
您可以将第一个权重设置为1,将第二个权重设定为1/100.00,还可以使最终直方图阵列使用浮动作为参考底图类型。
我通过访问hist1中的第一个bin,然后访问hist2中的第一个子bin来完成这项工作。。。。,hist 100中的第一个bin,并找到第一个bin的平均值,因此循环所有其他3000个bin(h_bins*S_bins=3000)
最后我得到了一个平均直方图,它适用于高级过程