Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
49 views

I've implemented an OCR queue using PaddleOCR and noticed that some documents are receiving the same extracted data as the previously processed document. So far, this behaviour seems to be isolated to ...
CIRCLE's user avatar
  • 4,959
-1 votes
0 answers
38 views

i have tried build package, conda, pip etc. can't do it please help me for any solution for install paddleocr on ppc64le cpu ibm power 9 cpu. thanks.
Ahmet Akın's user avatar
1 vote
0 answers
67 views

I am currently using PP-OCRv5 with the PP-OCRv5_server_det model. I've set the language parameter to lang="japan" in an attempt to process Japanese text, but the output frequently contains ...
a.hasegawa's user avatar
0 votes
0 answers
270 views

I am using PaddleOCR with the Arabic language model (lang='ar') to perform OCR on Arabic images. While PaddleOCR correctly recognizes the Arabic characters, it processes the text in a Left-to-Right (...
SummerSoft's user avatar
0 votes
1 answer
210 views

I’m using Paddle OCR to extract prices from some products price tags, in most cases it give good results but I noticed that it fails to extract prices with single digit When I edit the image and add ...
Zikofs's user avatar
  • 173
0 votes
0 answers
534 views

I got a multitude of envelopes captured like in this screenshot (address hidden by me for confidentiality). For most of them Paddle OCR is working great. But for a couples it doesn't captures much. If ...
Maquisard's user avatar
0 votes
0 answers
628 views

I want to use Paddle to OCR a really fancy custom font. It's good but i know it could be better if I fine tuned it. I've run into this tutorial on Medium but it assuems the reader already has training ...
suko-mars's user avatar
1 vote
0 answers
1k views

I am currently working on an OCR task using PaddleOCR within a Docker container. I am encountering the following error when trying to execute my application: RuntimeError: (PreconditionNotMet) Cannot ...
Rauhan Ahmed's user avatar
4 votes
2 answers
569 views

I am doing an image OCR using Paddle OCR. Below is the sample code I am using: from paddleocr import PaddleOCR import os image_file = "3_496.png" ocr = PaddleOCR(use_gpu=True) image_path = ...
S Andrew's user avatar
  • 7,596
0 votes
1 answer
1k views

PaddleOCR can correctly recognize 90, 180 and even 270 degree rotated text in a mode use_angle_cls=True, but it doesnt provide any information about the angle of rotation in a result.As a result, area ...
user176953's user avatar
1 vote
1 answer
694 views

I need to do OCR task on images containing ordinary horizontal text, and, besides this, text with 90 and 270 degree rotation Like this I use python and PaddleOcr .PaddleOCR can recognize rotated text, ...
user176953's user avatar
1 vote
1 answer
740 views

I'm trying to switch a PaddleOCR model to ONNX for better performance. It normally takes just the image path or base64 and gives results with preprocessing handled internally. But in ONNX, it suddenly ...
ha ze's user avatar
  • 11
0 votes
1 answer
161 views

Tajik language uses cyrillic, do I have to create new model from scratch or fine tune Russian cyrillic model? Tajik has extra letters ӣ, ҳ, қ, ҷ, ӯ, ғ Tajik and the Russian language are different
akahhor's user avatar
  • 139
1 vote
0 answers
540 views

When i use my Colab GPU to train Handwriting Recognition based on PaddleOCR pipeline, i have to downgrade its CUDA to 11.7 so it can work well with PaddleOCR, i check !nvcc -V its got updated but when ...
Võ Hoàng Bảo's user avatar
0 votes
1 answer
239 views

%timeit result = ocr.ocr(img_path, cls =True) for line in result: print(line) I couldn't figure anything out as I do not understand what is wrong with it
Vuyani Nkosi's user avatar
0 votes
0 answers
2k views

I try to run paddleHub in my colab, but I face a question import paddlehub as hub the error AttributeError: module 'paddle' has no attribute 'version' I try to import 2.0 up version but it's still ...
Haeppypuppy's user avatar
0 votes
1 answer
4k views

I am not able to import paddleocr library on Google Colab after the install of paddlepaddle and paddleocr successfully. It hits the error as shown below: **from paddleocr import PaddleOCR, draw_ocr** ...
Liang's user avatar
  • 3
1 vote
1 answer
4k views

I intend to use PaddleOCR to detect image orientation and plan to use their Text Angle Classification Model. However, I got stuck trying to figure out how to install it and integrate it into my code (...
vs07's user avatar
  • 801
1 vote
1 answer
3k views

How to save PaddleOCR model? How to load it afterwards from the saved file? I'd like to have something like this: import PaddleOCR model = PaddleOCR(use_angle_cls=True, lang='en') save_path = '/some/...
Alcibiades's user avatar
0 votes
1 answer
962 views

I am trying to read the 7 segment display using Paddle OCR, sometimes it reads correctly otherwise it reads poorly given the image is clear and visible to read For example: This image is clear and ...
Jinen Rathore's user avatar
1 vote
6 answers
15k views

I am currently using intel i3 with no gpu, I created a virtual environment in python with python version 3.10.11, while my current python version is 3.11.3 In the virtual env I tried installing ...
Jinen Rathore's user avatar
0 votes
1 answer
4k views

PaddleOCR seems to support different algorithms/models for text detection, as written in their algorithms overview. However, when trying to load a different model from "DB" (for example &...
Nicoloc's user avatar
  • 11
2 votes
1 answer
2k views

when I am trying to install PaddleOCR, I'm running into an installation error while trying to install pymupdf. I'm currently on Python 3.8.16 error: command 'swig' failed with exit status 1 [end of ...
derekbailinkedin's user avatar
2 votes
2 answers
1k views

Am encountering an issue running PaddleOCR on M1 Macbook ERROR: flag 'flagfile' was defined more than once (in files '/Users/paddle/xly/workspace/f2bafd01-b80e-4ac8-972c-1652775b2e51/Paddle/build/...
user2392965's user avatar
1 vote
1 answer
4k views

I am trying to use Paddle OCR for reading numbers from images, but it gives me this error: "(InvalidArgument) Device id must be less than GPU count, but received id is: 0. GPU count is: 0. [Hint: ...
sgl's user avatar
  • 95