python-opencv获取二值图像轮廓及中心点坐标的代码

Olive ·
更新时间:2024-09-21
· 619 次阅读

python-opencv获取二值图像轮廓及中心点坐标代码:

groundtruth = cv2.imread(groundtruth_path)[:, :, 0] h1, w1 = groundtruth.shape contours, cnt = cv2.findContours(groundtruth.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) if len(contours) != 1:#轮廓总数 continue M = cv2.moments(contours[0]) # 计算第一条轮廓的各阶矩,字典形式 center_x = int(M["m10"] / M["m00"]) center_y = int(M["m01"] / M["m00"]) image = np.zeros([h1, w1], dtype=groundtruth.dtype) cv2.drawContours(image, contours, 0, 255, -1)#绘制轮廓,填充 cv2.circle(image, (center_x, center_y), 7, 128, -1)#绘制中心点 cv2.imwrite("1.png", image)

以上这篇python-opencv获取二值图像轮廓及中心点坐标的代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。

您可能感兴趣的文章:Python使用Opencv实现图像特征检测与匹配的方法Python OpenCV图像指定区域裁剪的实现python实现图像检索的三种(直方图/OpenCV/哈希法)用Python+OpenCV对比图像质量的几种方法python使用opencv对图像mask处理的方法opencv python 图像轮廓/检测轮廓/绘制轮廓的方法python opencv 图像拼接的实现方法Python Opencv实现图像轮廓识别功能Opencv-Python图像透视变换cv2.warpPerspective的示例python Opencv计算图像相似度过程解析



二值图像 opencv Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号