Sem descrição

jingze_cheng db1e83b48c fix: 修复依赖版本冲突 há 7 meses atrás
core b8d49d5a45 chore: 删除临时输出 há 7 meses atrás
deploy 8a43236ce0 更新 'deploy/Jenkinsfile' há 10 meses atrás
minimal_client_server_example b6077d2e00 init há 2 anos atrás
sx_utils 961521c830 fix: 重构结构 há 1 ano atrás
templates 43d208f007 feat: 支持多尺度推理及后处理 há 7 meses atrás
test_imgs f9e641d1b0 first há 2 anos atrás
testing a412d85bcb - há 2 anos atrás
.DS_Store f9e641d1b0 first há 2 anos atrás
.gitignore 82da82d435 chore: 更新gitignore há 8 meses atrás
Dockerfile 0807c77982 fix: 修复Dockerfile há 7 meses atrás
Dockerfile.base 3b59c0ca5b fix: Dockerfile há 1 ano atrás
Makefile 588f8e69da fix: pt文件 há 1 ano atrás
README.md 37c228510d docs: 更新README há 7 meses atrás
client.py 3e4238836d 更新模型使用 há 2 anos atrás
create_md.py ba9ddf64fc first há 2 anos atrás
cutimgs.py ba9ddf64fc first há 2 anos atrás
docker-compose.yml f9e641d1b0 first há 2 anos atrás
environment.yml db1e83b48c fix: 修复依赖版本冲突 há 7 meses atrás
kubeconfig-sxkj 671746b0b3 feat: kubeconfig há 1 ano atrás
kubeconfig-sxkjprod 671746b0b3 feat: kubeconfig há 1 ano atrás
requirements.txt db1e83b48c fix: 修复依赖版本冲突 há 7 meses atrás
run.py 2fa551ba1f feat: yolov7 há 1 ano atrás
server.py 43d208f007 feat: 支持多尺度推理及后处理 há 7 meses atrás
test.py 2fa551ba1f feat: yolov7 há 1 ano atrás
writeMD.py f9e641d1b0 first há 2 anos atrás

README.md

水平框版面分析

基于 Official YOLOv7PaddleYOLO,用于水平框版面分析。

环境

conda env create -f environment.yml

服务端

python run.py --port 8080

镜像打包

make all

模型配置

模型名称 模型配置
Official YOLOv7 ./core/detectors/yolov7.py
PaddleYOLO YOLOv7P6-E6 ./core/detectors/paddle_yolo/__init__.py

如果更新了模型权重,请同时修改创建镜像时的下载地址,如:

$ cat Dockerfile
...
# 模型权重下载地址
RUN wget ftp://192.168.199.31/yolov7p6_e6_300e/20240314/yolov7p6_e6_300e_coco.zip
...

服务实现

版面分析服务的简化流程为:

图片 + 模型名称
    |
    | (根据模型名称,对图片进行相应的布局检测)
    v
布局检测框集

其中基于 PaddleYOLO 的布局检测实现中还包含图像预处理,模型预测,后处理等。源码:PaddleYOLO/deploy/python/infer.py#L62

注:PaddleYOLO 基于 PaddleDetection,预测部署的代码实现大部分是一致的。