Which is the Better Tools for OCR Vertical Scene Recognition, PaddleOCR or Tesseract-ocr?

Viewed 32

Recently, I want to make a tools for Vehicle License Plate Recognition. I have searched two ocr tools, paddleocr and tesseract-ocr, but as a beginner I don't know which is better, can anyone give me the answer?

1 Answers

There is a post about PaddleOCR and tesseract. https://converter.app/blog/paddleocr-engine-example-and-benchmark

In my test, the effects of PaddleOCR and tesseract are similar in general scenes. The disadvantages of PaddleOCR is missing white spaces between two or three words. But PaddleOCR characters are more accurate.

For your desired scenario: the license plate scene, PaddleOCR is significantly better than tesseract.

Another, PaddleOCR not only open-sources the OCR model, but also the model training method.

Related