我使用模板opencv
矩阵阅读了一些Mat_
代码。他们在这里:
Mat image = Mat:zeros(512,512,CV_8UC3);
for (int i = 0; i < image.rows; ++i)
for (int j = 0; j < image.cols; ++j)
{
Mat sampleMat = (Mat_<float>(1,2) << j,i);
.....
}
sampleMat
是Mat sampleMat(1,2,CV_32FC1)
。乳清需要使用(Mat_<float>(1,2) << j,i)
吗?