change model name & write readme

This commit is contained in:
UnknownObject
2025-05-17 20:25:19 +08:00
parent 78be0daf80
commit b7d97547be
3 changed files with 44 additions and 6 deletions
+40 -1
View File
@@ -1 +1,40 @@
# EasyOCR-CPP
# EasyOCR-CPP
A C++ implementation of EasyOCR using ONNXRuntime.
## Library Needed
- OpenCV 4.10
- ONNXRuntime 1.19.2
- NVIDIA CUDA 11.7 (Optional)
## C++ Version
C++17 or above.
## Build
Using Visual Studio 2022 or later, open the `EasyOCR-CPP.sln` file and build the `EasyOCR-CPP` project.
## Model Info
### Detection Model
Detection model can handle all kinds of language that EasyOCR can recognize.
### Recognition Model
Recognition model is different for each language. In this project, the `English` and `English+Chinese` model are provided.
## Usage
See `EasyOCR-CPP/EasyOCR-CPP.cpp` for an example usage.
## Todo
Provide A modified version of EasyOCR that can export any recognition model to ONNX format easily.
## Other Informations
EasyOCR Library: https://github.com/JaidedAI/EasyOCR
ONNX Model Export Guide: https://github.com/JaidedAI/EasyOCR/issues/746