我有一个Image<Gray, Byte>
,我想计算图像的协方差矩阵。
因此我使用函数CvInvoke.cvCalcCovarMatrix(imageptr, 2, cov, avg, COVAR_METHOD.CV_COVAR_NORMAL);
这是我的代码:
Image<Gray, Byte> image_gray = _image.Convert<Gray, Byte>();
Matrix<float> cov = new Matrix<float>(image_gray.Rows, image_gray.Cols);
Matrix<float> avg = new Matrix<float>(image_gray.Cols, 1);
Matrix<float>[] input = new Matrix<float>[image_gray.Rows];
float[] temp = new float[image_gray.Rows];
for (int j = 0; j <image_gray.Rows; j++)
{
for (int i = 0; i < image_gray.Cols; i++)
{
temp[i] = (float)image_gray[j, i].Intensity;
}
input[j] =new Matrix<float>(temp);
}
IntPtr[] imageptr = Array.ConvertAll<Matrix<Single>, IntPtr>(input, delegate(Matrix<Single> mat) { return mat.Ptr; });
CvInvoke.cvCalcCovarMatrix(imageptr, 2, cov, avg, COVAR_METHOD.CV_COVAR_NORMAL);
问题是,协方差矩阵元素的结果总是为空。
答案 0 :(得分:0)
错误是cvCalcCovarMatrix(imageptr,count, cov, avg, COVAR_METHOD.CV_COVAR_NORMAL);
正确的是:
cvCalcCovarMatrix(imageptr, image_gray.Cols, cov, avg, COVAR_METHOD.CV_COVAR_NORMAL);