opencv学习笔记十四:使用cv2.findContours()和cv2.drawContours()实现轮廓检测

一、cv2.findContours()函数

contours, hierarchy=cv2.findContours(image, mode, 
									 method[, contours[, 
									 hierarchy[, offset ]]])

参数
1、image:寻找轮廓的图像;
2、mode:表示轮廓的检索模式,有四种:

你可能感兴趣的:(#,python,opencv,计算机视觉)