重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

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

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

成都创新互联2013年至今,先为和静等服务建站,和静等地企业,进行企业商务咨询服务。为和静企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
groundtruth = cv2.imread(groundtruth_path)[:, :, 0]
h2, 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([h2, 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获取二值图像轮廓及中心点坐标的代码-创新互联
网站URL:http://cqcxhl.cn/article/hehis.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP