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

How to add a custom word list to inkrecognizer in uwp?

I have developped a uwp app that has a custom user control allowing handwriting recognition of the user input with a stylus into a textbox. It works fine for common words, however my users often use technical terms and acronyms that are not always…
2
votes
1 answer

Pen Computing App Development in Windows Phone

I wanted to make an app in windows phone that takes in pen-computing input. Is there existing code infrastructure (templates and such) in the Windows Phone API that is available to the Windows Phone developer? What I mean by pen-computing input is…
2
votes
1 answer

Is it possible to extract text from handwritten notes in OneNote?

For a project I am looking for ways to extract text from handwritten notes in OneNote. The idea is that one can quickly write notes in OneNote and then my application reads the notes and saves it as a text file somewhere else. I have read into the…
Jonas Kaufmann
  • 1,797
  • 3
  • 22
  • 43
2
votes
1 answer

How can I do handwriting recognition each time a user has finished tracing a stroke?

Basing myself on the code given by MSDN for Handwriting Recognition in windows 10 apps, I tried to have it recognize the handwriting automatically after the user has finished tracing an ink stroke rather than when clicking a button. I have been able…
Streltsov
  • 417
  • 1
  • 6
  • 14
2
votes
1 answer

Java - Find lines among x y coordinates set

I have a x, y coordinates set, that build up a English alphabetical letter/Shape like as in the image. They are not in straight lines because coordinates are captured when a user write them. I want to find out through a Java application using the…
2
votes
1 answer

Converting HTK model to Pocketsphinx

I have a working model built with HTK for online handwriting recognition. Now I want to build another recognition system for Android. After some research I found out that PocketSphinx has a version running on Android OS. Now, what I think of is to…
2
votes
0 answers

Android handwriting chinese character recognition SDK

I am trying to add handwriting chinese character recognition to my app. I am looking for something like this, but for Android: http://www.chinese-tools.com/tools/mouse.html Is there any free handwriting chinese character recognition SDK for Android…
salut au revoir
  • 101
  • 1
  • 4
2
votes
0 answers

Neural network algorithm recognize handwriting characters that are distorted , elongated or overwritten...?

I am doing my final year project in android. The user can write the alphabet and the application will check whether it's written correctly or not. i am planning to use neural network. The problem is that for a letter say "A", the attached images…
Shanij P.S
  • 164
  • 3
  • 12
2
votes
3 answers

How to verify if two signature or draws are alike in Android?

I was wonder if there is any way to check in Android if I could check if two draws are alike, not specially the same. I want to make a test for little kids . Let's say they draw 'A' letter and I want to check if there is correct. So I think I could…
1
vote
1 answer

Slant Correction Algorithm for Binary Images of Digits

As part of an Offline Handwriting Recognition program, i have a large set of hand written digits written by about 100 people of the numbers 0 to 9. Before getting the program to classify each of the images, i want to do a little pre processing to…
Craig Innes
  • 1,573
  • 11
  • 23
1
vote
0 answers

I am not able to view the file in program of text to handwriting

Please help, i am beginner in python. The code i used for text to handwriting is this import pywhatkit as pw txt = """ What is Lorem Ipsum? """ pw.text_to_handwriting(txt,"img2.png",[0,0,138]) pw.text_to_handwriting(txt) print("END") When i am…
Sahal
  • 17
  • 1
1
vote
1 answer

Extract only the handwriting text from a pdf using OCR

I am working OCR handwriting to text conversion using Google cloud vision api. Input is a pdf with 1-5 pages, but the catch is the each page of pdf can have default header and footer printed on it and in between that, an answer would be written by…
1
vote
0 answers

React onChange logs array with wrong delayed values \ onMouseUp

import React, { useRef, useEffect } from 'react'; import './App.css'; import logo from '../src/logo.svg'; import iink from 'iink-js'; function App() { const editorRef = useRef(null);; useEffect(() => { let editor =…
1
vote
0 answers

I am trying to extract the amount in words from cheque. I have already selected the Region of interest but not able to extract data from it correctly

Cheque Image I want to extract date, amount in figures, amount in words, account number, cheque number. I have extracted date, account number and cheque number but unable to extract amount in words from the image. Here is the region of interest for…
1
vote
0 answers

Handwritten signature similarity match in python

I am trying to solve problem where i have two digital handwritten signature i have to find similarity percentage between them Below is the code import cv2 from skimage.metrics import structural_similarity as ssim import numpy as np # TODO add…