欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

错误 C2039: "type": not a member of "cv::DataType" 解决方法 - 我的错误函数是:

最编程 2024-04-19 17:35:47
...
cv::drawMatches(imageList[edge.first].getMat(cv::ACCESS_READ), imageList[edge.second].getMat(cv::ACCESS_READ), keypoints[edge.first], keypoints[edge.second], matches[i], img_matches);

正确的为:

cv::drawMatches(imageList[edge.first].getMat(cv::ACCESS_READ), keypoints[edge.first], imageList[edge.second].getMat(cv::ACCESS_READ),  keypoints[edge.second], matches[i], img_matches);

推荐阅读