【发布时间】:2014-01-05 10:30:34
【问题描述】:
我想显示基本矩阵,但出现如下错误: 错误:不匹配调用 '(cv::Mat) (int&, int&)'
这是我的代码:
vector<Point2f> imgpts1,imgpts2;
for(unsigned int i=0;i<matches.size();i++)
{
imgpts1.push_back(keypoint1[matches[i].trainIdx].pt);
imgpts2.push_back(keypoint2[matches[i].trainIdx].pt);
}
//Mat fundamental=Mat(3,3,CV_32F);
Mat fundamental=findFundamentalMat(imgpts1,imgpts2,FM_RANSAC,3,0.99);
cout<<"fundamental:"<<endl;
for(int i=0;i<fundamental.rows;i++)
{
for(int j=0;j<fundamental.cols;j++)
{
cout<<fundamental(i,j)<<" ";
}
cout<<endl;
}
【问题讨论】:
-
Mat::operator()的签名是什么?