【OpenCV常用函数:轮廓检测+外接矩形检测】cv2.findContours()+cv2.boundingRect()
文章目录1、cv2.findContours()2、cv2.boundingRect()1、cv2.findContours()对具有黑色背景的二值图像寻找白色区域的轮廓,因此一般都会先经过cvtColor()灰度化和threshold()二值化后的图像作为输入。cv2.findContous(image,mode,method[,contours[,hierarchy[,offset]]])''