# idcard-ocr-paddle **Repository Path**: dhb52/idcard-ocr-paddle ## Basic Information - **Project Name**: idcard-ocr-paddle - **Description**: PaddleOCR识别身份证号, 提供Flask的web服务 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2024-12-10 - **Last Updated**: 2025-02-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: Python, ocr, paddle, PaddlePaddle ## README # 身份证识别服务 使用PaddleOCR + Flask提供身份证识别的 web 服务。目前只是简单的通过正则表达式识别出身份号,其他内容的结构化需要自行处理。 ## 执行命令 ```shell pip install -r requirements.txt gunicorn --worker-connections=1000 -w 4 --bind 0.0.0.0:5000 app:app ``` ## windows 部署 ```cmd pip install waitress waitress-serve --listen=0.0.0.0:5000 app:app ```