如果使用vector<vector<Point> > contours;
作为findContours的参数,在运行时会得到
Assertion failed (mtype == type0 || (CV_MAT_CN(mtype) == CV_MAT_CN(type0) && ((1 << type0) & f...
原因是标准库里有std::vector
和 Point
和findContours里要用到的vector和Point不是一回事
所以,声明的时候要用
cv::vector
和cv::Point
就可以了