from paddleocr import PaddleOCR, draw_ocr from matplotlib import pyplot as plt import cv2 import os import gradio as gr from typing import List def ocr_model(filepath: str, languages: List[str]=None): pocr_model = PaddleOCR(use_angle_cls=True, lang='ch', use_gpu=False) result = pocr_model.ocr(filepath) state_txt = "" for i in range(len(result[0])): text1= result[0][i][1][0] state_txt += str(text1)+'\n' return state_txt title = "US Vehicles Number Plate" description = "Gradio demo for PaddlePaddle. PaddleOCR is an open source text recognition (OCR) Engine." article = "
" with gr.Blocks(title=title) as demo: gr.Markdown(f'