python-opencv获取二值图像轮廓及中心点坐标的代码-创新互联-古蔺大橙子建站
RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
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://scgulin.cn/article/hehis.html