imutils.grab_contours是imutils == 0.5.2(目前版本)中的新功能。imutils.grab_contours经常搭配 cv2.findContours一起使用,如:
cnts = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL,
cv2.CHAIN_APPROX_SIMPLE) #1
cnts = imutils.grab_contours(cnts) #2
opencv2返回两个值:contours、hierarchy。opencv3返回三个值:img(图像)、countours(轮廓)、hierarchy(层次结构)。