OpenCV图像处理(6)——轮廓标记

在目标上绘制彩色轮廓
在目标轮廓上画最小外接圆

vector> contours;
vector hierarcy;
findContours(srcImg, contours, hierarcy, CV_RETR_TREE, CV_CHAIN_APPROX_NONE);
cout<<"num="<

你可能感兴趣的:(opencv,cv,python,makefile,物联网)