Scroll Top

Optical Character Recognition from Images in Flutter

Optical Character Recognition from Images in Flutter
Getting your Trinity Audio player ready...

Optical Character Recognition from Images in Flutter

Optical Character Recognition(OCR) is a technology that enables the identification of text within images, such as scanned documents and pictures. OCR technology is used to turn virtually any form of written text image into machine-readable text data (typed, handwritten, or printed).

OCR technology has proved remarkably useful in digitizing historic newspapers by transforming them into completely searchable formats.

OCR made it simpler and quicker to access those previous texts while enabling its users to edit with word processors like Microsoft Word or Google Docs.

How it works

How is this really accomplished? Text on a picture is easily perceptible to us and we can detect characters and read the text, but it’s just a set of dots on a screen.

The picture is first scanned and the elements of text and graphics are transformed into a bitmap, which is basically a black and white dot matrix. In order to improve the accuracy of the operation, the image is then pre-processed where the brightness and contrast are adapted.

OCR SOFTWARE

The image is now divided into zones that identify areas of interest, such as where the images or text are, and this helps to start the process of extraction. The text-containing areas can now be further broken down into lines, words, and characters, and the software can now match the characters through the comparison and different detection algorithms. The outcome is the text and later is converted into separate means such as word documents, PDFs, or even audio content through text-to-speech technologies.

The system may not be 100% accurate and may require human intervention to correct any elements that have not been correctly scanned. You can also fix errors using a dictionary or even Natural Language Processing (NLP).

What is the need for businesses to use OCR software?

Today, many sectors are using OCR software technology that earlier was broken due to problems such as data unusability, inaccuracy, and failure. By revolutionizing data and storage systems, there are many aspects that OCR technology has helped industries such as healthcare, human resources, banking, and insurance. Digitization and sharing of files to avoid common user errors.

OCR SOFTWARE – 1

The modern office worker also takes for granted the process of making a scanned file searchable since OCR today is embedded in many applications, websites and content management systems. Way back in the early days of the new millennium OCR used to be a costly form of software reserved for imaging service bureaus and Fortune 500 businesses.

For almost any company, storing information is important, but can you imagine how much it would benefit public services and government companies?

It’s much quicker to recover invoices while technology is on your hand. However, the magic doesn’t stop here, almost any industry you can think of will benefit greatly from OCR advantages.

5 Benefits of using an OCR

  • Better Search, accessibility, and usability of data
  • Time and Storage Saving
  • Improves Customer Satisfaction
  • Top-grade Translation
  • Enhancing Security

OCR in Flutter

In this blog we will explore how OCR in Flutter recognizes the text.

There are two ways we can interpret text depending on whether we want to perform the character recognition using a live camera or from an image.

In the previous blog, we looked at doing the OCR using flutter_mobile_vision plugin from the device camera.

In this blog, we will look at performing the character recognition on images and extracting the characters out of the image.

We will use the python packages to achieve this by defining a Django api and using it from the flutter mobile app.

There are few available options in Python which can be used for OCR which includes pytesseract, pyocr and cv2. In this blog, we will show the different options which we tried.

Implementation :

Let’s see how we implement the OCR functionality on image using Flutter and Python.

Setting up Python Django API

Download the prerequisite python engine which is used by all the ocr packages..

Download tesseract-ocr engine from

 “https://github.com/tesseract-ocr/tesseract

(OR) 

 –pip install tesseract-ocr

(OR)

https://github.com/EisenVault/install-tesseract-redhat-centos/blob/master/install-tesseract.sh

Setting up this engine requires a number of prerequisite steps and dependencies which are listed out based on the Operating systems.

Follow the link here to setup tesseract based on your OS.

This is a very important step without which your OCR will not work as expected.

You need to Setup the environment variable for the path pointing to your tesseract engine location.

Installation of Dependencies

Let’s create and activate the Python virtual environment using the below commands:

Next we will install the django related dependencies:

Now we will install the 2 python packages which we want to try out in this blog.

Next we will Create a project called tutorial for our example project:

In settings.py file add  http://10.0.2.2:8000 in allowed host’s [] of urls if you are using an emulator for testing your flutter app. This will ensure your api is accessible from the emulator app.

In project level file urls.py add a url that will redirect to the app level urls.py file as shown

In app level urls.py add a url that will hit a method in views.py file.

In views.py file within /restapi/restapp/api/ folder, Import all the following packages which includes permissions, csrf process and importing API.

Importing all the  required packages as shown

 

The following code method will extract the text from a given image and display the text on the screen. Below is the code showing the 2 variations using the 2 different packages.

Using Pytesseract

Using Pyocr

While trying out the 2 options, we found pyocr to be faster and more accurate with respect to extraction.

To start the django application,

Now the application will be running on http://localhost:8080

Flutter Application:

Create a new flutter app and include a camera widget to pick images using image picker. 

Step:1

Add the following dependencies to your pubspec.yaml file

Next our app will have the following code to use the image_picker to pick the image from the device gallery.

Note: If no image is selected the application will prompt you to choose an image to perform OCR.

Step:2

Then, send the picked image to the Python api using http POST method ,url and get a response from that call.

As mentioned earlier, to run on an emulator we should use the url – http://10.0.2.2:8000 and should write in python allowed host’s.

Below is the code to submit a post request to the api in the flutter app and receive the response text which is displayed finally.

The following screenshots show how OCR works and identifies text from the image you upload. 

Select the image on which you want to perform the OCR by clicking the Choose Image button. Once you choose the image click on the Upload Image button.

Clicking on the Upload Image button will send the image to undergo the process of OCR. Once the OCR is performed and the text is extracted from the image uploaded, the extracted text is displayed on your screen as shown below.

You can find the complete code for this example here.

Conclusion

In the blog, we saw how we could extract text from images in a Flutter application using the pytesseract and pyocr python packages.

Today, as the need for online documentation is rising the usage of OCR is also rising and is widely being used by many sectors. The need for ID verification services is one of the main reasons for the rising demand of OCR technology as it saves a lot of time by reading credentials from an official document. By using the latest technologies like these you can harness the power of OCR  and perform the conversion process and the quality of the output and its accuracy depends on the quality of the image. Over the last few years, the global OCR Systems Market has seen tremendous growth, and market analysts and studies say that in the coming years, this market will hit new heights.

Leave a comment

Privacy Preferences
When you visit our website, it may store information through your browser from specific services, usually in form of cookies. Here you can change your privacy preferences. Please note that blocking some types of cookies may impact your experience on our website and the services we offer.