码迷,mamicode.com
首页 > 其他好文 > 详细

opencv识别封闭区域 并标记该区域

时间:2018-08-31 13:14:56      阅读:1552      评论:0      收藏:0      [点我收藏+]

标签:http   des   info   highlight   image   format   分享   inf   .text   

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author  : zhibo.wang
# E-mail  : d_1206@qq.com
# Time    : 2018/8/21 17:24
# Des     :

# import imutils
# import numpy as np
import cv2
from PIL import Image, ImageDraw, ImageFont
from skimage.measure import regionprops
# from shapely.geometry import Point, Polygon


img = cv2.imread(‘1.png‘, 0)
ret, labels = cv2.connectedComponents(img)
props = regionprops(labels)
im = Image.open("1.png")
draw = ImageDraw.Draw(im)
for i in props:
    # print(i.coords)
    # print(props.index(i), i.centroid)
    draw.text((i.centroid[-1], i.centroid[0]), "{0}".format(props.index(i)), fill=(255,25,0))#,font=ttfont)
im.show()

  技术分享图片

技术分享图片

opencv识别封闭区域 并标记该区域

标签:http   des   info   highlight   image   format   分享   inf   .text   

原文地址:https://www.cnblogs.com/dockers/p/9565150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!