资源简介
Keras训练CNN+GRU+CTC不定长中文识别模型工程代码,含模型文件
代码片段和文件信息
from test.model import predict as ocr_predict
import cv2
from PIL import Image
if __name__ == ‘__main__‘:
img = cv2.imread(‘./img/03.jpg‘)
image = Image.fromarray(img).convert(‘L‘)
sim_pred = ocr_predict(image)
print sim_pred
评论
共有 条评论