本文介绍了如何计算和使用cvMat平均值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在openCV备忘单(C ++)中,我发现矩阵运算符mean()
.当我使用它时:
In the openCV cheat sheet (C++), I have found the matrix opration mean()
. When I use it:
float myMatMean = mean( MyMat );
我得到了错误:
我该怎么做才能使用这些数据?
What can I do in order to use this data?
推荐答案
谢谢.
问题在于尽管myMat
是2D图像.返回类型仍然是大小为 4 的Scalar
.
The problem was that although myMat
was a 2D image. The return type was still a Scalar
of size 4.
解决方案是
cv:Scalar tempVal = mean( myMat );
float myMAtMean = tempVal.val[0];
这篇关于如何计算和使用cvMat平均值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!