Python实现投影法分割图像示例(一)
程序员文章站
2023-11-22 11:46:04
投影法多用于图像的阈值分割。闲话不多说,现用python实现。
上代码。
import cv2
import numpy
img = cv2.imread('d:/0....
投影法多用于图像的阈值分割。闲话不多说,现用python实现。
上代码。
import cv2 import numpy img = cv2.imread('d:/0.jpg', cv2.color_bgr2gray) height, width = img.shape[:2] #resized = cv2.resize(img, (3*width,3*height), interpolation=cv2.inter_cubic) #二值化 (_, thresh) = cv2.threshold(img, 150, 255, cv2.thresh_binary) #cv2.imshow('thresh', thresh) #扩大黑色面积,使效果更明显 kernel = cv2.getstructuringelement(cv2.morph_rect, (10, 10))#形态学处理,定义矩形结构 closed = cv2.erode(thresh, none, iterations = 5) cv2.imshow('erode',closed) height, width = closed.shape[:2] v = [0]*width z = [0]*height a = 0 #垂直投影 #统计并存储每一列的黑点数 for x in range(0, width): for y in range(0, height): if closed[y,x][0] == 0: a = a + 1 else : continue v[x] = a a = 0 l = len(v) #print l #print width #创建空白图片,绘制垂直投影图 emptyimage = numpy.zeros((height, width, 3), numpy.uint8) for x in range(0,width): for y in range(0, v[x]): b = (255,255,255) emptyimage[y,x] = b cv2.imshow('chuizhi', emptyimage) #水平投影 #统计每一行的黑点数 a = 0 emptyimage1 = numpy.zeros((height, width, 3), numpy.uint8) for y in range(0, height): for x in range(0, width): if closed[y,x][0] == 0: a = a + 1 else : continue z[y] = a a = 0 l = len(z) #print l #print height #绘制水平投影图 for y in range(0,height): for x in range(0, z[y]): b = (255,255,255) emptyimage1[y,x] = b cv2.imshow('shuipin', emptyimage1) cv2.waitkey(0)
原图
垂直投影图
水平投影图
由这两图可以确定我们所需的分割点,从而可以进行下一步的文本分割。这将在下一篇博客中实现。
以上这篇python实现投影法分割图像示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 微信小程序实战之运维小项目
下一篇: ASP.NET入门数据篇