我有以下代码(实际上只是运行我正在处理的所有项目所需的 4 部分中的一部分..):
#python classify.py --model models/svm.cpickle --image images/image.png
from __future__ import print_function
from sklearn.externals import joblib
from hog import HOG
import dataset
import argparse
import mahotas
import cv2
ap = argparse.ArgumentParser()
ap.add_argument("-m", "--model", required = True,
help = "path to where the model will be stored")
ap.add_argument("-i", "--image", required = True,
help = "path to the image file")
args = vars(ap.parse_args())
model = joblib.load(args["model"])
hog = HOG(orientations = 18, pixelsPerCell = (10, 10),
cellsPerBlock = (1, 1), transform = True)
image = cv2.imread(args["image"])
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blurred = cv2.GaussianBlur(gray, (5, 5), 0)
edged = cv2.Canny(blurred, 30, 150)
(_, cnts, _) = cv2.findContours(edged.copy(), cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
cnts = sorted([(c, cv2.boundingRect(c)[0]) for c in cnts], key =
lambda x: x[1])
for (c, _) in cnts:
(x, y, w, h) = cv2.boundingRect(c)
if w >= 7 and h >= 20:
roi = gray[y:y + h, x:x + w]
thresh = roi.copy()
T = mahotas.thresholding.otsu(roi)
thresh[thresh > T] = 255
thresh = cv2.bitwise_not(thresh)
thresh = dataset.deskew(thresh, 20)
thresh = dataset.center_extent(thresh, (20, 20))
cv2.imshow("thresh", thresh)
hist = hog.describe(thresh)
digit = model.predict([hist])[0]
print("I think that number is: {}".format(digit))
cv2.rectangle(image, (x, y), (x + w, y + h),
(0, 255, 0), 1)
cv2.putText(image, str(digit), (x - 10, y - 10),
cv2.FONT_HERSHEY_SIMPLEX, 1.2, (0, 255, 0), 2)
cv2.imshow("image", image)
cv2.waitKey(0)
此代码用于检测和识别图像中的手写数字。这是一个例子:
假设我不关心准确性识别。
我的问题如下:如您所见,程序获取他可以看到的所有数字并在控制台中打印它们。如果需要,我可以从控制台将它们保存在文本文件中,但我不能告诉程序数字之间有空格。
我想要的是,如果我在文本文件中打印数字,它们应该像图像中那样分开(抱歉,这有点难以解释......)。这些数字不应该(即使在控制台中)一起打印,但是,在有空格的地方,也打印一个空白区域。
看一下第一张图片。在前 10 位数字之后,图像中有一个空格,控制台中没有。
无论如何,这是完整代码的链接。有4个.py
文件和3个文件夹。要执行,请在文件夹中打开一个 CMD,然后将命令粘贴到images 文件夹python classify.py --model models/svm.cpickle --image images/image.png
中image.png
一个文件的名称中。
提前致谢。在我看来,所有这些工作都必须使用神经网络来完成,但我想首先尝试这种方式。我对此很陌生。