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.

Ask HN: Current methods/libraries for implementing handwriting OCR?

2 pointsby ChrisDutrowover 8 years ago
What are some current methods for implementing OCR on handwriting?<p>This is what I have so far:<p>* Pre-process with some image filters, try combinations of: Black and white, Greyscale, edge detection(Canny?), line detection(Hough?)<p>* Try kNN (k nearest neighbor) algorithm first. This should be fast and work on easy stuff, but its more of a math equation and not really deep learning.<p>* Try a CNN (convolutional neural network). Probably use either the Keras or mxnet libraries<p>STILL tripping me up:<p>* Is there another machine learning technique I should try to apply to this other than the kNN and CNN strategies??<p>* Are there libraries that are more specifically geared towards handwriting OCR than Keras or mxnet? RNNLIB (too old?), ocropy?<p>* Lastly, I haven&#x27;t come across many methods to isolate characters and words from an image full of handwritten text. Figured I&#x27;d try to pull characters out and send them through the kNN algorithm, and pull characters and words out before putting them through the CNN engine.

1 comment

nkkollawover 8 years ago
I&#x27;ve tried a few OCR solutions. Ultimately, the best was Google Vision, by a long shot.<p>It works great with unusual fonts&#x2F;handwritten allcaps, and it&#x27;s the absolute best when it comes to working with low-resolution images.<p>I have no experience using it with hard-to-read handwriting, but it might be worth checking it out if you don&#x27;t know it already.
评论 #13431713 未加载