tesserocr VS SimpleCV

Compare tesserocr vs SimpleCV and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
tesserocr SimpleCV
17 2
1,928 2,659
- 0.4%
5.9 0.0
4 days ago over 1 year ago
Python Python
MIT License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tesserocr

Posts with mentions or reviews of tesserocr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-05-08.
  • Tesserocr
    1 project | /r/pycharm | 25 Jan 2023
    Did you read the instructions for windows? https://github.com/sirfz/tesserocr
  • [Question] I am trying to segment the image using python.
    1 project | /r/opencv | 9 Aug 2021
    If you’re using tesserocr then you can use OpenCV images directly, so you can just extract the relevant image rows (e.g. query_image = main_image[prev_line:this_line]) and process then without needing to save each image.
  • Python app that will take a picture, scan it and upload that information into a excel file.
    1 project | /r/learnpython | 29 Jul 2021
    This tutorial is a good start towards getting the data from an image of a form with a known structure. I’d personally recommend using tesserocr (actual library binding, more efficient, more functionality) instead of pytesseract (requires images to be saved before processing, uses command-line options in a subprocess instead of binding to the library), but both should work (that tutorial uses pytesseract, which is also what u/Iceberg_Bart_Simpson linked to).
  • [Question] Working on a simple OCR program but the text from the image is returned in a backward order and it has trouble reading multiple words on a line
    1 project | /r/opencv | 11 May 2021
    Side note, but I’d suggest using tesserocr over pytesseract. It’s an actual binding to the tesseract library, so comes with numerous efficiency and interface benefits, and can operate on OpenCV images directly (whereas pytesseract saves them to disk first).
  • Optimizing ImageGrab and pytesseract
    3 projects | /r/learnpython | 8 May 2021
    If you’re after speed I’d recommend mss for screenshots/recording, and tesserocr instead of pytesseract (note in particular the OpenCV option.
  • Is pytesseract the only option for OCR in python?
    2 projects | /r/Python | 2 May 2021
    tesserocr is an actual binding to the tesseract library, and is better in practically every way than pytesseract (more efficient, more options for usage, doesn’t require saving images to disk before they can be processed, and more).
  • OCR with Python
    2 projects | /r/learnpython | 15 Apr 2021
    If you have an electronically created pdf (not scanned) and you’re just wanting to run OCR on embedded images then you’ll want a pdf library that can extract the figure images for you, and then you can use tesserocr to run OCR on those images.
  • Pytesseract/OCR: RuntimeError: can't start new thread when no multi-threading
    1 project | /r/learnpython | 24 Mar 2021
    If you want a suggestion, use tesserocr instead of Pytesseract. It’s an actual binding to the tesseract library (Python talks to it directly, instead of calling a program as a subprocess), which means it runs more efficiently, you can process multiple images sequentially with the same OCR engine (pytesseract has to start a process and a new engine for every image that gets processed), you get access to more functionality options, and a bunch of other beneficial stuff. If you’re doing preprocessing with OpenCV it’s even possible to pass those arrays directly to tesseract in memory, whereas Pytesseract requires that you save each image to a file before it can process it.
  • Can´t get part of this REGEX-pattern to work?
    1 project | /r/learnpython | 17 Mar 2021
    As a somewhat unrelated side note, I’d strongly suggest using tesserocr instead of pytesseract, and even more so if you’re working with opencv as well. It’s a true library binding which means it’s more efficient, you have more functionality available to you, you can process multiple images with the same Tesseract engine, and you can process opencv images directly (compared to pytesseract which saves them as a file first and then calls the tesseract CLI as a subprocess).
  • OCR Video Game Text
    1 project | /r/learnpython | 6 Mar 2021
    In Python the library PyTesseract constructs a command to run and calls Tesseract via the command-line as a subprocess, which is inefficient if you have more than one image to process, because it has to reinitialize the OCR engine for every image. tesserocr is a different library which came around a bit later, which is a direct binding to the Tesseract library, so you can initialise the engine once and process several images with it, and for images that are stored in memory (e.g. OpenCV arrays that you’ve done some processing on) you can process them directly instead of having to save them as individual files (which PyTesseract requires).

SimpleCV

Posts with mentions or reviews of SimpleCV. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-07.
  • Python for everyone : Mastering Python The Right Way
    30 projects | dev.to | 7 Mar 2022
    SimpleCV
  • Top 5 Python libraries for Computer vision
    8 projects | dev.to | 6 May 2021
    SimpleCV - SimpleCV is a framework for Open Source Machine Vision, using OpenCV and the Python programming language. It provides a concise, readable interface for cameras, image manipulation, feature extraction, and format conversion. Our mission is to give casual users a comprehensive interface for basic machine vision functions and an elegant programming interface for advanced users.

What are some alternatives?

When comparing tesserocr and SimpleCV you can also consider the following projects:

doctr - docTR (Document Text Recognition) - a seamless, high-performing & accessible library for OCR-related tasks powered by Deep Learning.

OpenCV - Open Source Computer Vision Library

EasyOCR - Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.

Face Recognition - The world's simplest facial recognition api for Python and the command line

pytesseract - A Python wrapper for Google Tesseract

OCRmyPDF - OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched

Kornia - Geometric Computer Vision Library for Spatial AI

gaps - A Genetic Algorithm-Based Solver for Jigsaw Puzzles :cyclone:

multi-object-tracker - Multi-object trackers in Python