使用Python进行字符分割

我正在使用Python的计算机视觉技术检测手写符号。我已经在一个包含单个字符的数据集上训练了一个卷积神经网络(CNN),但现在我想从图像中提取字符,以便对单个字符进行预测。最佳的实现方法是什么?我将要处理的 handwritten 文本不是连笔书写,并且字符之间会有明显的间隔。


回答:

你可以使用查找轮廓并用框包围它们的方法。

image = cv2.imread("filename") image = cv2.fastNlMeansDenoisingColored(image,None,10,10,7,21)gray = cv2.cvtColor(image,cv2.COLOR_BGR2GRAY)res,thresh = cv2.threshold(gray,150,255,cv2.THRESH_BINARY_INV) #threshold kernel = cv2.getStructuringElement(cv2.MORPH_CROSS,(3,3))  dilated = cv2.dilate(thresh,kernel,iterations = 5)  val,contours, hierarchy =             cv2.findContours(dilated,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_NONE)  coord = [] for contour in contours:        [x,y,w,h] = cv2.boundingRect(contour)         if h>300 and w>300:             continue         if h<40 or w<40:             continue        coord.append((x,y,w,h))  coord.sort(key=lambda tup:tup[0]) # if the image has only one sentence sort in one axis count = 0 for cor in coord:        [x,y,w,h] = cor        t = image[y:y+h,x:x+w,:]        cv2.imwrite(str(count)+".png",t)  print("number of char in image:", count)

Related Posts

使用LSTM在Python中预测未来值

这段代码可以预测指定股票的当前日期之前的值,但不能预测…

如何在gensim的word2vec模型中查找双词组的相似性

我有一个word2vec模型,假设我使用的是googl…

dask_xgboost.predict 可以工作但无法显示 – 数据必须是一维的

我试图使用 XGBoost 创建模型。 看起来我成功地…

ML Tuning – Cross Validation in Spark

我在https://spark.apache.org/…

如何在React JS中使用fetch从REST API获取预测

我正在开发一个应用程序,其中Flask REST AP…

如何分析ML.NET中多类分类预测得分数组?

我在ML.NET中创建了一个多类分类项目。该项目可以对…

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注