Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fast OCR in vb.net [closed]

Tags:

image

vb.net

ocr

I'm creating an application that finds all of the text in a picture regardless of text size or font (whithin reason, Just the basic monospaced and default windows fonts). I tried making my own but it was slow and very unreliable. I need it to work fast (as close to instant (give or take 1 or 2 seconds)). I have to run it on images 1000+x1000+ (Nothing more than 1500). I have to take the values of the text and the position of it in the image.

Thanks if you can help!

I'm using VB.net, just so you know.

like image 946
Freesnöw Avatar asked Apr 05 '11 13:04

Freesnöw


1 Answers

I suggest you look into the Tesseract OCR library (currently maintained by Google) which also has a .NET binding here and a related SO question here.

like image 59
paracycle Avatar answered Oct 28 '22 17:10

paracycle