gpt4 book ai didi

python - OpenCV-Python 中的数字识别 OCR

转载 作者:太空宇宙 更新时间:2023-11-03 22:28:54 25 4
gpt4 key购买 nike

我的问题是关于构建一个简单的程序来检测图像中的数字,我做了一些研究并找到了这个主题 Simple OCR digits在堆栈上,我发现它很有教育意义,所以我想根据自己的需要使用它。

我的训练数据图像是这样的:

我用来构建数据集的代码是:(我对 Abid Rahman 的代码做了一些修改,所以它可以处理我的情况)

import sys

import numpy as np
import cv2

im = cv2.imread('data_set_trans.png')
im3 = im.copy()

gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
blur = cv2.GaussianBlur(gray,(5,5),0)
thresh = cv2.adaptiveThreshold(blur,255,1,1,11,2)

################# Now finding Contours ###################

contours,hierarchy = cv2.findContours(thresh,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)

samples = np.empty((0,100))
responses = []
keys = [i for i in range(48,58)]


for cnt in contours:
if cv2.contourArea(cnt)>20:
[x,y,w,h] = cv2.boundingRect(cnt)


if h>=10:
cv2.rectangle(im,(x,y),(x+w,y+h),(0,0,255),2)
roi = thresh[y:y+h,x:x+w]
roismall = cv2.resize(roi,(10,10))
cv2.imshow('norm',im)
print "Begin wait"
key = cv2.waitKey(1)
key = raw_input('What is the number ?') #cv2.waitKey didnt work for me so i add this line


if key == -1: # (-1 to quit)
sys.exit()
else:
responses.append(int(key))
sample = roismall.reshape((1,100))
samples = np.append(samples,sample,0)

responses = np.array(responses,np.float32)
responses = responses.reshape((responses.size,1))
print "training complete"

np.savetxt('generalsamples.data',samples)
np.savetxt('generalresponses.data',responses)

我使用与测试部分相同的训练数据图像,以获得最佳结果准确性并查看我的方法是否正确:

import cv2
import numpy as np
import collections

####### training part ###############
samples = np.loadtxt('generalsamples.data',np.float32)
responses = np.loadtxt('generalresponses.data',np.float32)
responses = responses.reshape((responses.size,1))

model = cv2.KNearest()
model.train(samples,responses)

############################# testing part #########################

im = cv2.imread('one_white_1.png')
out = np.zeros(im.shape,np.uint8)
gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
thresh = cv2.adaptiveThreshold(gray,255,1,1,11,2)

contours,hierarchy = cv2.findContours(thresh,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)
for cnt in contours:
if cv2.contourArea(cnt)>20:
[x,y,w,h] = cv2.boundingRect(cnt)
if h>=10:
cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)
roi = thresh[y:y+h,x:x+w]
roismall = cv2.resize(roi,(10,10))
roismall = roismall.reshape((1,100))
roismall = np.float32(roismall)
retval, results, neigh_resp, dists = model.find_nearest(roismall, k = 1)
string = str(int((results[0][0])))
cv2.putText(out,string,(x,y+h),1,1,(0,255,0))


cv2.imshow('im',im)
cv2.imshow('out',out)
#cv2.waitKey(0)
raw_input('Tape to exit')

结果是这样的:

如您所见,这是完全错误的。

我不知道我遗漏了什么,或者如果我的情况更特殊并且不能由这个数字 OCR 系统处理????

如果有人能帮我解决问题

我注意到我正在使用 python 2.7 open-cv 2.4.11 numpy 1.9 和 mac os 10.10.4

谢谢

最佳答案

我找到了正确的方法,它只需要更多定制代码。

检测countours之前的相同过程:

gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
blur = cv2.GaussianBlur(gray,(5,5),0)
thresh = cv2.adaptiveThreshold(blur,255,1,1,11,2)

不是

gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
thresh = cv2.adaptiveThreshold(gray,255,1,1,11,2)

cv2.rectangle(im,(x,y),(x+w,y+h),(0,0,255),2)

不是

cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)

我得到 99% 的准确率,良好的开始百分比

还是谢谢你

关于python - OpenCV-Python 中的数字识别 OCR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31712675/

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