
OpenCV系列
稻穗子
这个作者很懒,什么都没留下…
展开
-
一篇opencv求连通域不错的文章
https://blog.youkuaiyun.com/qq_43667702/article/details/86656543转载 2019-11-08 14:31:30 · 126 阅读 · 0 评论 -
cv2.fillConvexPoly()与cv2.fillPoly()填充多边形
cv2.fillConvexPoly()cv2.fillConvexPoly()函数可以用来填充凸多边形,只需要提供凸多边形的顶点即可.我们来画一个三角形img = np.zeros((1080, 1920, 3), np.uint8)triangle = np.array([[0, 0], [1500, 800], [500, 400]])cv2.fillConvexP...原创 2018-12-13 10:20:58 · 41123 阅读 · 1 评论