:955B : :1 :2022-01-02 11:11:56
数字识别.py(基于opencv)如果开发者对于本文件有需要的可以参考,opencv python实现手写数字的识别。
# 调用pytesseract、Image库实现验证码的简单识别
cv.bitwise_not(open_out, open_out) # 非操作(背景变为白色)
cv.imshow("white background", open_out)
textImage = Image.fromarray(open_out) # 图像转换为numpy数组类型
text = tess.image_to_string(textImage, lang='eng', \
config='--psm 6 --oem 3 -c tessedit_char_whitelist=0123456789').strip()
print(type(text))
print(text)
result = int(float(text))
if result == 6: # 需要识别的数字
print(f"数字识别结果为{result},识别正确")
else:
print("数字识别失败")
01-04简单的纯数字识别
10-03qt数字识别
10-03手写数字识别
09-26mnist手写数字识别
09-19基于opencv漫水填充算法综合示例
08-31基于opencv的模板匹配代码
06-28基于opencv的车牌识别
02-02手写数字识别程序
09-13实现TensorFlow的手写数字识别