查找轮廓坐标

时间:2017-01-24 22:55:20

标签: python opencv

我正在尝试找到给定矩形每个角的坐标。 到目前为止,我已经能够使用轮廓函数获得两个角,但是当我浏览整个轮廓阵列时,有大量的点需要筛选。我只寻找最极端的值(最大和最小x和y值)

import cv2
import numpy as np

#open image
img = cv2.imread('cnt-coords.jpg')

#convert to black and white
bw = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)

#threshold image
ret, thresh = cv2.threshold(bw,127,255,0)

#find contours
im2, contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

#obtain the first 2 points of contours
cntx1 = contours[0][0]
cntx = contours[0][1]

#convert coords to points
pt1 = (cntx1[0][0],cntx1[0][1])
pt2 = (cntx[0][0],cntx[0][1])

#draw circles on coordinates
cv2.circle(img,pt1,5,(0,255,0),-1)
cv2.circle(img,pt2, 5, (0,255,0),-1)

#display the image
cv2.imshow('f',img)

cv2.waitKey(0)
cv2.destroyAllWindows()

我通过contours返回给我和它的一大堆点来筛选,这些点似乎是我图像对角线上的所有点。有没有办法简化我收到的点,在这种情况下是这个矩形/平行四边形的角落?

test contours

1 个答案:

答案 0 :(得分:2)

findContours函数返回轮廓上的像素。您可以尝试使用OpenCV的approxPolyDP函数来查找轮廓的多边形近似值。可以找到here的用法和说明。在你的情况下,它将类似于以下内容:

epsilon = cv2.arcLength(contours[0],True)
approx = cv2.approxPolyDP(contours[0],epsilon,True)