RapidOCR icon indicating copy to clipboard operation
RapidOCR copied to clipboard

Awesome OCR multiple programing languages toolkits based on ONNXRuntime, OpenVION and PaddlePaddle. (将PaddleOCR模型做了转换,采用ONNXRuntime推理,速度很快)

Results 9 RapidOCR issues
Sort by recently updated
recently updated
newest added

参考OCRWeb实现的多语言部署 - 同时支持多种语言,可通过接口参数配置语言及预测过程中的其他参数 - 调整结果展示方式为基于canvas, 减少后端处理和接口数据传输 - 预测接口添加Token验证支持 - 添加pyinstaller打包脚本,简化安装步骤 示例打包结果: https://github.com/AutumnSun1996/RapidOCR/releases/tag/v1.1.1-ocrweb-multi

操作系统WIN10 x64 语言C++ 编译RapidOCR 如果仅仅使用onnxruntime-1.7.0-shared.7z和 opencv-3.4.13-sharedLib.7z, 直接运行build.bat会报错,提示cmake找不到onnxruntime,所以只能使用onnxruntime-1.6.0-sharedLib.7z,

希望RapidOCR在C++方面部署方面能支持GPU版本

### Discussed in https://github.com/RapidAI/RapidOCR/discussions/169 det 有时返回的box竟然有负数,这种应该直接在后台设为0吧? [[412.0, -2.0], [514.0, -1.0], [513.0, 35.0], [411.0, 34.0]]

bug
more info

## 当前问题 在 detect_process.py 的 `DBPostProcess` 类中,`self.boxes_from_bitmap()` 方法用到了 `self.unclip()`,以扩展所得 box 的边界。 ```python ··· box = self.unclip(points).reshape(-1, 1, 2) box, sside = self.get_mini_boxes(box) if sside < self.min_size + 2: continue box...

Stale

你好,我实际测试下来,发现CPU上rapidocr_onnxruntime性能比rapidocr_paddle好,但是这个差异主要是默认的cpu_math_library_num_threads没有设置导致的。具体原因是:以下这个分支里的设置线程数没有跑进去,导致paddle CPU推理的默认性能很差。 ```python cpu_nums = os.cpu_count() infer_num_threads = config.get("cpu_math_library_num_threads", -1) if infer_num_threads != -1 and 1

#### 问题描述 / Problem Description 本问题来自[RapidVideOCR Discussions #61](https://github.com/SWHL/RapidVideOCR/discussions/61) 对于电影字幕中,存在一帧图像仅有单字的情况。例如下图: rec.png ![0_05_13_400__0_05_14_039_0000009351920011319201080](https://github.com/user-attachments/assets/cc789aa7-b45c-4418-b219-a719840a203d) `rapidocr_onnxruntime==1.3.24`版本中,可以检测到该文字,但是识别阶段未能成功识别 #### 运行环境 / Runtime Environment - `rapidocr_onnxruntime`: 1.3.24 - `OS`: macOS 14.5 - python: 3.10 #### 复现代码 /...

#### Problem Description: While processing a large number of images (approximately 1000) using RapidOCR, I encountered the following errors midway through the process: 1. **Leaked Semaphore Objects**: "There appear to...

#### 问题描述 / Problem Description 1. python-multipart依赖没有加 2. fix bugs: Error loading ASGI app. Could not import module "api". 3. 内存爆炸 #### 运行环境 / Runtime Environment 1. ubuntu22.04 2. docker环境python:3.10-slim...