Views
No views yet
1conda create -n openocr python==3.8
2conda activate openocr
3conda install pytorch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 pytorch-cuda=11.8 -c pytorch -c nvidiapip install openocr-python1from openocr import OpenOCR
2
3engine = OpenOCR()
4
5img_path = '/path/img_path or /path/img_file'
6result, elapse = engine(img_path)
7
8# Server mode
9# engine = OpenOCR(mode='server')1git clone https://github.com/Topdu/OpenOCR.git
2cd OpenOCR
3pip install -r requirements.txt
4wget https://github.com/Topdu/OpenOCR/releases/download/develop0.0.1/openocr_det_repvit_ch.pth
5wget https://github.com/Topdu/OpenOCR/releases/download/develop0.0.1/openocr_repsvtr_ch.pth
6# Rec Server model
7# wget https://github.com/Topdu/OpenOCR/releases/download/develop0.0.1/openocr_svtrv2_ch.pth1# OpenOCR system: Det + Rec model
2python tools/infer_e2e.py --img_path=/path/img_fold or /path/img_file
3
4# Det model
5python tools/infer_det.py --c https://github.com/Topdu/OpenOCR/tree/main/configs/det/dbnet/repvit_db.yml --o Global.infer_img=/path/img_fold or /path/img_file
6
7# Rec model
8python tools/infer_rec.py --c https://github.com/Topdu/OpenOCR/tree/main/configs/rec/svtrv2/repsvtr_ch.yml --o Global.infer_img=/path/img_fold or /path/img_file1pip install gradio==4.20.0
2wget https://github.com/Topdu/OpenOCR/releases/download/develop0.0.1/OCR_e2e_img.tar
3tar xf OCR_e2e_img.tar
4# start demo
5python demo_gradio.py| Method | Venue | Training | Evaluation | Contributor |
|---|---|---|---|---|
| CRNN | TPAMI 2016 | ✅ | ✅ | |
| ASTER | TPAMI 2019 | ✅ | ✅ | pretto0 |
| NRTR | ICDAR 2019 | ✅ | ✅ | |
| SAR | AAAI 2019 | ✅ | ✅ | pretto0 |
| MORAN | PR 2019 | ✅ | ✅ | Debug |
| DAN | AAAI 2020 | ✅ | ✅ | |
| RobustScanner | ECCV 2020 | ✅ | ✅ | pretto0 |
| AutoSTR | ECCV 2020 | ✅ | ✅ | |
| SRN | CVPR 2020 | ✅ | ✅ | pretto0 |
| SEED | CVPR 2020 | ✅ | ✅ | |
| ABINet | CVPR 2021 | ✅ | ✅ | YesianRohn |
| VisionLAN | ICCV 2021 | ✅ | ✅ | YesianRohn |
| SVTR | IJCAI 2022 | ✅ | ✅ | |
| PARSeq | ECCV 2022 | ✅ | ✅ | |
| MATRN | ECCV 2022 | ✅ | ✅ | |
| MGP-STR | ECCV 2022 | ✅ | ✅ | |
| CPPD | 2023 | ✅ | ✅ | |
| LPV | IJCAI 2023 | ✅ | ✅ | |
| MAERec(Union14M) | ICCV 2023 | ✅ | ✅ | |
| LISTER | ICCV 2023 | ✅ | ✅ | |
| CDistNet | IJCV 2024 | ✅ | ✅ | YesianRohn |
| BUSNet | AAAI 2024 | ✅ | ✅ | |
| DCTC | AAAI 2024 | TODO | ||
| CAM | PR 2024 | ✅ | ✅ | |
| OTE | CVPR 2024 | ✅ | ✅ | |
| CFF | IJCAI 2024 | TODO | ||
| DPTR | ACM MM 2024 | TODO | ||
| VIPTR | ACM CIKM 2024 | TODO | ||
| IGTR | 2024 | ✅ | ✅ | |
| SMTR | 2024 | ✅ | ✅ | |
| FocalSVTR-CTC | 2024 | ✅ | ✅ | |
| SVTRv2 | 2024 | ✅ | ✅ | |
| ResNet+Trans-CTC | ✅ | ✅ | ||
| ViT-CTC | ✅ | ✅ |