gpt4 book ai didi

python - 使用 OpenCV 提取手写文本的形状

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:43 33 4
gpt4 key购买 nike

我是 OpenCV Python 的新手,在这里我真的需要一些帮助。

所以我在这里要做的是提取下图中的这些词。

hand drawn image

文字和形状都是手绘的,所以并不完美。我在下面做了一些编码。

首先,我对图像进行灰度化

img_final = cv2.imread(file_name)
img2gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)

然后我使用 THRESH_INV 来显示内容

ret, new_img = cv2.threshold(image_final, 100 , 255, cv2.THRESH_BINARY_INV)

然后,我扩展内容

kernel = cv2.getStructuringElement(cv2.MORPH_CROSS,(3 , 3)) 
dilated = cv2.dilate(new_img,kernel,iterations = 3)

我放大图像是因为我可以将文本识别为一个簇

之后,我在轮廓周围应用 boundingRect 并在矩形周围绘制

contours, hierarchy = cv2.findContours(dilated,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_NONE) # get contours
index = 0
for contour in contours:

# get rectangle bounding contour
[x,y,w,h] = cv2.boundingRect(contour)

#Don't plot small false positives that aren't text
if w < 10 or h < 10:
continue

# draw rectangle around contour on original image
cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,255),2)

这是我之后得到的。

result image

我只能检测到其中一个文本。我尝试了许多其他方法,但这是我得到的最接近的结果,它不满足要求。

我之所以要识别文本,是因为我可以通过放置一个边界矩形“boundingRect()”来获取此图像中每个文本的 X 和 Y 坐标。

请帮帮我。非常感谢

最佳答案

您可以利用以下事实:字母的连接部分比图表其余部分的大笔划小得多。

我在代码中使用了 opencv3 连接组件,但您可以使用 findContours 做同样的事情。

代码:

import cv2
import numpy as np

# Params
maxArea = 150
minArea = 10

# Read image
I = cv2.imread('i.jpg')

# Convert to gray
Igray = cv2.cvtColor(I,cv2.COLOR_RGB2GRAY)

# Threshold
ret, Ithresh = cv2.threshold(Igray,0,255,cv2.THRESH_BINARY_INV+cv2.THRESH_OTSU)

# Keep only small components but not to small
comp = cv2.connectedComponentsWithStats(Ithresh)

labels = comp[1]
labelStats = comp[2]
labelAreas = labelStats[:,4]

for compLabel in range(1,comp[0],1):

if labelAreas[compLabel] > maxArea or labelAreas[compLabel] < minArea:
labels[labels==compLabel] = 0

labels[labels>0] = 1

# Do dilation
se = cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(25,25))
IdilateText = cv2.morphologyEx(labels.astype(np.uint8),cv2.MORPH_DILATE,se)

# Find connected component again
comp = cv2.connectedComponentsWithStats(IdilateText)

# Draw a rectangle around the text
labels = comp[1]
labelStats = comp[2]
#labelAreas = labelStats[:,4]

for compLabel in range(1,comp[0],1):

cv2.rectangle(I,(labelStats[compLabel,0],labelStats[compLabel,1]),(labelStats[compLabel,0]+labelStats[compLabel,2],labelStats[compLabel,1]+labelStats[compLabel,3]),(0,0,255),2)

enter image description here

关于python - 使用 OpenCV 提取手写文本的形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39391080/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com