TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Back to the Future of Handwriting Recognition

142 pointsby jabagaweealmost 7 years ago

10 comments

rayineralmost 7 years ago
Handwriting recognition is a great example of technology whose development seems to have plateaued before it became "good enough." Stroke-based recognition has been in development for half a century now, but my iPad Pro still makes errors at least a couple of times per line, which is enough to make it pretty much useless unless you're writing only for your own later consumption. That and voice recognition. It's shocking how bad Android and iOS still are at that, even after decades of work on voice recognition technology.
pipio21almost 7 years ago
&gt;I think it’s worth asking why anyone in their right mind should care about mid-century handwriting recognition algorithms in 2016.<p>Lots of people care, specially in Asia(Chinese and Japanese). It is just that the problem is incredible hard.<p>We put 5 very smart people working for a year on that, and it was totally impossible meeting people&#x27;s expectations, specially people like doctors taking notes fast(and ugly).<p>We thought that the market was in creating mindmaps or something instead as people could write slower and better.<p>But people write a double u and expect the computer to see an &quot;m&quot;. With deep learning is possible but extremely flimsy.
snowwrestleralmost 7 years ago
This a cool exploration of technology, and I don&#x27;t want to take away from that.<p>&gt; The program was efficient enough to run in real-time on a IBM System&#x2F;360 computer, and robust enough to properly identify <i>90 percent</i> of the symbols drawn by first-time users.<p>I just want to point out that 90% accuracy is, from a user&#x27;s point of view, <i>awful</i> handwriting recognition performance. It means you will be correcting on average about 10 words per paragraph! Even 99% percent accuracy is not nearly good enough to give people a sense that the computer is good at handwriting recognition.<p>I also want to point out the difficulty and danger in interpreting strokes when doing handwriting recognition.<p>In the last demo box, try writing a capital Y without lifting the pen. You&#x27;ll have to go &quot;up and down&quot; one or both upper branches. Because of this, the recognizer will call it a K, A, or N even though it is obviously a Y when you&#x27;re done.<p>This demo is constrained to only using one stroke per letter, but systems that permit multiple strokes still get into trouble when the strokes don&#x27;t match what they are expecting--for example if you draw an X using 4 individual strokes outward from a central point.<p>This also happens with words. In Microsoft&#x27;s handwriting recognition in Office in the early 2000s, writing the letters of a word out of order completely borked the recognition. For example writing &quot;xample&quot; and then going back and adding an &quot;e&quot; at the beginning would not produce a recognized word of &quot;example.&quot;<p>My point with all of this is that there is a reason you probably don&#x27;t do all your computing with natural handwriting. It&#x27;s a surprisingly difficult problem. Users do not expect it to matter how they form letters and words on the page. And they have very low tolerance for correcting computer mistakes.
评论 #17290268 未加载
评论 #17289211 未加载
评论 #17292398 未加载
评论 #17289455 未加载
pkayealmost 7 years ago
This is kind of interesting. I had a through about how to approach the handwriting recognition problem a few years back and surprisingly I though of this curvature based approach also. I never implemented it (too lazy to try...) but its cool to see how well something like that might work.
blattimwindalmost 7 years ago
The linked demo is by far the most impressive thing I&#x27;ve seen all week. I wish a certain Microsoft chart editor was as easy and unfinicky to use as this demo from 1966 (52 years ago), and that&#x27;s still one of the better editors out there.
评论 #17290575 未加载
symlockalmost 7 years ago
I missed it the first time, but the article has linked source code (github.com&#x2F;jackschaedler&#x2F;handwriting-recognition) for all the D3.js demos that is worth a read.
interfixusalmost 7 years ago
All this constant talk of AI and singularities and whatnot.<p>Reality check: Our machines do not yet accurately manage simple reading tasks.
watmoughalmost 7 years ago
I did something like this in Visual Basic and submitted it to PC PLUS in the UK, back in the early 90&#x27;s.<p>It was (yay!) published as recognit.bas (VB) and I&#x27;d be really happy if someone still has a copy.<p>It recognized just numbers but the basis of operation was similar to the linked article.
EliasYalmost 7 years ago
I wonder if it was possible to use Hinton&#x27;s idea of local features (where a 3 is recognized as an E in a 180 rotation map and a W in 90 deg. rotation map) to make the recognition partially rotation invariant....
singularity2001almost 7 years ago
so much time spent on manual feature engineering which could be implicitly picked up by RNNs.