我计算了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 );
}发布于 2014-04-09 22:33:09
您可以尝试使用addWeighted并遍历直方图数组。
您可以将第一个权重设置为1,将第二个权重设置为1/100.0,也可以让最终的直方图数组使用float作为底层类型。
发布于 2014-04-11 15:02:10
我通过访问hist1中的第一个bin,然后访问hist2中的第一个bin,...,hist 100中的第一个bin,并找到第一个bin的平均值,从而循环所有其他3000个bin (h_bins*S_bins=3000)
最后,我得到了一个平均直方图,它可以很好地用于高级处理
https://stackoverflow.com/questions/22963811
复制相似问题