且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

OpenCV-如何找到带有圆角的矩形的矩形轮廓?

更新时间:2023-01-03 22:53:51

您需要找到找到的轮廓的边界矩形.

You need to find the bounding rectangle of the found contours.

img = cv2.imread("image.png", -1)

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

binary = cv2.bitwise_not(gray)

(_,contours,_) = cv2.findContours(binary, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)

for contour in contours:
    (x,y,w,h) = cv2.boundingRect(contour)
    cv2.rectangle(img, (x,y), (x+w,y+h), (0,255,0), 2)