python cv2.findContours
时间: 2023-11-02 08:57:20 浏览: 74
cvFindContours
Python中的cv2.findContours函数是用于在图像中查找轮廓的方法。它可以帮助我们检测出图像中的物体边缘和特征。该函数的使用方式是:contours, hierarchy = cv2.findContours(image, mode, method)。其中,image是要进行轮廓检测的输入图像,mode是轮廓检测的模式,method是轮廓近似方法。
阅读全文