Questions tagged [handwriting-recognition]

Handwriting recognition is the ability of a computer to receive and interpret handwritten input.

Handwriting recognition is the ability of a computer to receive and interpret intelligible handwritten input, from sources such as paper documents, photographs, touch-screens and other devices.

Handwriting recognition principally entails optical character recognition.

184 questions
2
votes
0 answers

Is there a way to correct rotation of a text based on a horizontal line?

I'm processing some images for OCR. But some inputs may be italic since they are handwriting. And sometimes this causes wrong results. I wonder is there a way to correct the rotation of these handwritten words based on this horizontal line below…
2
votes
1 answer

Adding CTC Loss and CTC decode to a Keras model

I am trying to solve a use case of handwritten text recognition. I have used CNN and LSTM to create a network. The output of this needs to be fed to a CTC layer. I could find some codes to do this in native tensorflow. Is there an easier option for…
NinjaR
  • 621
  • 6
  • 22
2
votes
1 answer

How do you use tensorflow ctc_batch_cost function with keras?

I have been trying to implement a CTC loss function in keras for several days now. Unfortunately, I have yet to find a simple way to do this that fits well with keras. I found tensorflow's tf.keras.backend.ctc_batch_cost function but there is not…
2
votes
2 answers

How do I isolate handwritten text from an image using OpenCV and Python?

How do I isolate or crop only the handwritten text using OpenCV and Phyton for the image: I have tried to use: cv2.findContours but because of the noise (background and dirty in paper) I can't get only the paper. How do I do this?
2
votes
1 answer

How can I extract data from a handwritten, scanned PDF using Python?

So I have these PDFs that are scanned copies of a structured feedback form. The form has these checkboxes and spaces for hand written notes. I am trying to extract the data from these PDFs and save it to an unstructured CSV file. Now using …
PranavM
  • 23
  • 1
  • 9
2
votes
2 answers

Perform line segmentation (cropping) serially with OpenCV

I am performing full Page Offline Handwriting Recognition with Deep Learning. The main idea is to build the model that can take one line of text image and give it's corresponding text. For this main task is do line segmentation of every line in a…
susan097
  • 3,500
  • 1
  • 23
  • 30
2
votes
0 answers

Data augmentation with GAN Network for handwriting alphabets recognition

I have a short dataset for recognizing Bengali alphabets (9600 data for training and 3000 for testing). The total number of classes: 50. This seems to be a short number of data. So I was trying to augment the data set by ImageDataGenerator from…
2
votes
1 answer

Do convolutional neural networks run faster on binary images

I am trying some DCNN to recognize handwriting words (word spotting) where the images are binary, and I am wondering if the computation time will be faster than using DCNNs with other gray-level or color images. In addition, how one can equalize the…
2
votes
1 answer

MyScript Interactive Ink SDK conversion to math returns?

I am using the MyScript Interactive ink SDK to convert handwritten math equations. I tested out the SDK using the test examples they have and everything worked great. I imported a lot of their code logic to my application and am successfully able to…
R T
  • 21
  • 1
2
votes
1 answer

How to use multiple handwriting recognition engines in UWP?

I want to write with a stylus on an InkCanvas in any supported language. The handwriting recognition is done by the InkRecognizer objects. Judging by their possible names, I see that it includes English (US), French, German and Romanian. I have…
Julien Shepherd
  • 103
  • 2
  • 9
2
votes
0 answers

CTC Loss not decreasing in Keras

I am using Keras with theano backend for online handwriting recognition problem as solved in this paper: http://papers.nips.cc/paper/3213-unconstrained-on-line-handwriting-recognition-with-recurrent-neural-networks.pdf. I followed the Keras image…
2
votes
2 answers

TensorFlow: No decrease in CTC loss while training BLSTM

I am trying to create an end-to-end trainable offline English Handwriting Recognition Model (without segmenting individual character). I am using the word dataset from IAM Handwriting Database for training. I tried decreasing the learning rate,…
2
votes
1 answer

Tesseract OCR iOS detect text from handwritten form and autofill online form with the text

I have used Tesseract for extracting text from scanned documents and I am able to fetch text from scanned documents. Now I want to extract text from a handwritten form (Hard copy) and use that text to autofill my online form (soft copy of the same…
2
votes
1 answer

Training Tesseract for Handwritten Digits: mftraining step takes forever

I have been trying to train Tesseract 3.04 to recognise handwritten digits. The method was first presented in the paper in the following link : https://arxiv.org/abs/1003.5897. I've followed the necessary steps using Training Tesseract 3.04 wiki…
akozlu
  • 101
  • 8
2
votes
0 answers

Can Windows.UI.Input.Inking.dll be used with Visual Studio 2015 community, desktop edition?

I have tried for hours now to use a reference to Windows.UI.Input.Inking.dll on Windows 10 (64-bit) without success. Can Windows.UI.Input.Inking.dll be used with Visual Studio 2015 community, desktop edition? If so, how? If it can't be used, what…
Alan Wayne
  • 5,122
  • 10
  • 52
  • 95
1 2
3
12 13