使用python从轮廓中心查找像素坐标

我是python和OpenCV的新手。 我只想找到轮廓中心检测到的物体图像的像素坐标。

先谢谢你。 任何帮助,将不胜感激。

通过搜索,我发现了这样的事情:

coord = np.where(np.all(img == (0, 0, 255), axis=-1))
print zip(coord[0], coord[1])

这个例子找到了一个使用OpenCV和Python的对象的中心:

http://www.pyimagesearch.com/2016/02/01/opencv-center-of-contour/


使用cv2.minEnclosingCircle(contour)计算轮廓的最小包围圆。
这里是文档。

链接地址: http://www.djcxy.com/p/89745.html

上一篇: Finding pixel coordinate from center of contours using python

下一篇: OpenCV feature matcher something is missing