美文网首页
2021-12-01 opencv findContours a

2021-12-01 opencv findContours a

作者: 0619f9023a02 | 来源:发表于2021-12-01 17:05 被阅读0次

std::vector<vector<Point> > contours;

 std::vector<cv::Vec4i> hierarchy;

cv::findContours(mask1,contours,hierarchy,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_NONE);

错误:matrix.cpp:2430: error: (-215) mtype == type0 || (CV_MAT_CN(mtype) == CV_MAT_CN(type0) && ((1 << type0) & fixedDepthMask) != 0) in function create

解决:std::vector<vector<Point> > contours 改成std::vector<std::vector<cv::Point>> contours;

相关文章

网友评论

      本文标题:2021-12-01 opencv findContours a

      本文链接:https://www.haomeiwen.com/subject/dcnsxrtx.html