Building OCR For Devanagari Handwritten Character

Using Keras, OpenCv and NumPy to build a simple OCR.

Ramkrishna Acharya
Analytics Vidhya

--

The better approach to perform this project has been done in my another blog so if you want to know about it, please visit this link.

Inspiration

Devanagari is popular across the India and Nepal. It is also a National font of Nepal so back on 2018 I thought of doing OCR for our font as project. I had no clue how to do it but I knew some basics of Machine Learning. But I started doing it on 2019 February and it ended on 3 months. At the end it became as my school project.

Recoginiton Of Devanagari Character

Requirements

Some basic knowledge on Machine Learning. And for coding, you might need keras 2.X, open-cv 4.X, Numpy and Matplotlib.

Introduction

Devanagari is the national font of Nepal and is used widely throughout the India also. It contains 10 numerals(०, १, २, ३, ४, ५, ६, ७, ८, ९) and 36 consonants (क, ख, ग, घ, ङ, च, छ, ज, झ, ञ, ट, ठ, ड, ढ, ण, त, थ, द, ध,न, प,फ, ब, भ, म, य, र, ल, व, श, ष, स, ह, क्ष, त्र, ज्ञ). Some consonants are complex and made by combine some other. However, throughout this project i considered them as single character.

The required dataset is publicly available on the link. Huge credit goes to the team who collected the dataset and made it public.

Dataset Preparation

We could create own version of dataset but why to take lot time rather than working with already collected dataset. The format of image was Grayscale with 2 pixels margin on each side. I didn’t knew that much about ‘Image Datagenerator’ of Keras then so I converted all the image files to CSV file with first column as label and remaining 1024 as pixel values. But now I highly recommend to use ‘Image Datagenerator’.

Model Preparation

For model, I picked up a simple CNN. Keras Summary of model is given below.

Keras Model Summary

Model Training

  • Loss: Categorical Cross Entropy
  • Optimizer: SGD
  • Batch size: 32
  • Epochs: 100
  • Validation split: 0.2
  • Train time: 37.86 minutes on Google Colab
  • Test accuracy: 99.29%

I have used various models and some week to train a fine model and ended up with the best one by using above parameters. Here is the image about how model was tuning.

Model Accuracy
Model Loss

My Github Repository consists of all top 3 models(cnn0, cnn1, cnn2) and their code please follow through this link.

Image Processing

Training a model alone will not create a OCR. And we can’t use real world image on the model without doing pre-processing. Here is a complete image processing model code.

Image Processing Method

First we will copy the BGR(OpenCv reads on BGR) image and then convert it to Binary Image using OpenCv’s threshold function. Thresholding the image always reduces the complexity of tasks because we will be working on only 2 pixel values 0 and 255. Another important thing is we have to find the background and foreground pixels. This is really tricky part because there will be a case where our text will be white and background be black and vice versa so we need to do some trick to always find foreground and background pixels. Here i checked only 5 pixels from the top left corner. This idea will not always work but for some time it will be good approach.

Next we need to find the ROI. Because the text might be situated on any side of the image. So we must find the exact image position and crop it to do further processing. Next We will do segmentation. Here i used only Numpy for image cropping and segmenting. This sounds funny but it is true.

Finding ROI

Finding the real border of text.
Working of Cropping

Finding the real position of text is another problem. Because on realtime, image can consists lot of noise and there is always a chance of finding the false shapes. To handle this i have wrote some formula. Here i set the some pixel values to be noise and neglect them. Then we keep checking from the top of the image. Whenever we find the foreground pixels more than the noise value, we crop the image from the position current_row — noise_value. We do same for other 3 sides also.

Cropped Image

Segmentation

Image Segmentation using Numpy.

Now more crazy part is image segmentation using Numpy. We take the copy of cropped image and remove the top most part of the text. On our Nepali, we call it ‘Dika’. By doing this we can actually get some space between characters. So i wrote a general formula which will work for all images.

Removed ‘Dika’

Next we will run a loop through each column and see if any column is entire a background pixel. If so it might be the right place to do segmentation but there is always a risk of having large margin. So we send them again to bordered function to remove the unwanted background spaces. After doing so, we will get the exact column number from which we can slice our original cropped image. I’ve called them segmented_templates here.

Image segmentation

Localization

Template Matching

Localization is the concept of finding the exact image position and showing the border. We use the previous segments and pass them as template and using OpenCv’s template matching method we find the exact position where that segment matched. Of course the template will match 100% but i’ve set the threshold value to 0.8 here. Whenever a template matches, i’ve drawn a rectangle around the matched portion on original image. For this, i have used OpenCv’s rectangle drawing.

Localizing

Add Border

Adding margin.

Now our image must be converted to 32 by 32 size because our training data is also 32 by 32. But resizing the segments to that shape will cause our prediction fail mostly. The reason is, our train image have 2 pixels margin around it. And we need to do so here also.

Prediction With Trained Model

Prediciton Using Pretrained Model

For each preprocessed segments passed to this function will return the accuracy and label of prediction. We will use these on the recognition method.

Recognition Of Segments

Recognition of Segments.

No matter how hard we code there will be always a false positive predictions. But we can try to reduce them. Problem of false positive can happen when the image quality is low and entire text is taken as single character. On that case, we take that as true only if prediction is more than 80%. But on final code to prevent localization of false segments, i have done localization after finding if segment is true. If the prediction is less than 80%, the entire text will be treated as single character and done prediction.

Recoginiton and Localization of Word

Camera For Realtime

OpenCv for Camera capture.

OCR needs camera to work. So i used the OpenCv’s camera methods for doing realtime image capture. Here on above code, i wrote plenty of codes to do some interesting things. The camera will show a rectangular box and we can actually manipulate its shape also. The portion of image lying inside the box will be sent to the recognition process. Here i used some keys like spacebar for capture image, enter key for relatime video, etc.

Combining It all

Now is the time for integration of all the modules. User can pass the image location on local storage and if the image doesn’t exists, program runs the camera mode.

Overall System Process

I have tried to do Android App development by using TensorflowLite also but it is still paused. And i am planning to write a code for web app.

Thank you so much for reading this article. And please follow to this Github Link for the entire project and the documentation.

Read my article about Crowd Counting Made Easy:

Please reach out to Github and give it a try.

Find me on my exposure site.

Find me on Twitter.

Find me on LinkedIn.

Find me on Youtube.

--

--

Ramkrishna Acharya
Analytics Vidhya

I love making computer understand things by creating intelligent programs.