上代码:
//定义矩阵
CvMat* wrap_mat=cvCreateMat(2,3,CV_32FC1);
//打印矩阵
for(int x=0;x<2;x++)
for(int y=0;y<3;y++)
{
cout<<CV_MAT_ELEM(*wrap_mat,float,x,y)<<endl;
}
上代码:
//定义矩阵
CvMat* wrap_mat=cvCreateMat(2,3,CV_32FC1);
//打印矩阵
for(int x=0;x<2;x++)
for(int y=0;y<3;y++)
{
cout<<CV_MAT_ELEM(*wrap_mat,float,x,y)<<endl;
}