I am developing web application using PHP.Client wants to integrate the hand writing recognition engine to our application(Like whatever you written it needs to convert into text format).I don't have any idea on this.Could you please give some suggestion and ideas on how to integrate the engine to PHP.
P.S:Open source is preferable.If not available no problem on the money constraint.

link|improve this question

56% accept rate
5  
You're kidding, right? good OCR software is expensive, and only works when comparing existing, known fonts, with a regular pattern, where the differences between letters is as small as it can get. Handwriting? Maybe in a few years. For PHP? That's like writing a space shuttle launch program in Lolcode. – AlexanderMP Sep 20 '10 at 10:15
1  
You may be able to tap into a handwriting recognition library/API on system level using exec() or a web service. There is no native PHP solution for this, and probably never will be (it's too far outside its scope). – Pekka Sep 20 '10 at 10:20
Alexander: So I guess existing handwriting recognition software actually doesn't work? Also Lolcode is perfectly suitable for space industry grade applications, as long as it can get compiled to machine code. :P – Mchl Sep 20 '10 at 10:21
@Alexander it's absolutely not impossible. See libraries like playground.sun.com/pub/multimedia/handwriting/hre.html – Pekka Sep 20 '10 at 10:21
@vinoth you need to add some details about your server environment – Pekka Sep 20 '10 at 10:21
show 5 more comments
feedback

3 Answers

Not a real answer to your question, but Windows XP Tablet, Vista and 7 have this already built in like so:

alt text

these controls will pop up when the user taps an input field.

They are bound to be superior to whatever API or library you manage to come up with, because they are trained to their "master's" handwriting, and manage to provide specific input components that are impossible to implement in a web site.

Maybe having clients use this technology can solve part of your problem without any effort on your end - it really depends on the nature of the project.

Also, I found this: Server-side handwriting recognition in Windows 2008 server - maybe you can tap into that through COM, I have no idea.

link|improve this answer
feedback

I may have a solution but I doubt its PHP, its Ruby i believe:

Look here to see if this gets you closer to your goal: http://detexify.kirelabs.org/

Source is available on GitHub: http://github.com/kirel/detexify

link|improve this answer
feedback

As Alexander says - no such software exists (if you could write such a thing then you could retire on the royalties!)

Do you really need handwriting recognition or do you just need to capture an image of what the user writes? The latter is relatively trivial.

C.

link|improve this answer
I dont need an image.I need it in a text format.I already mentioned in my question – svk Sep 20 '10 at 11:36
Let me know when you've written it - if it works I'll buy shares in your company! – symcbean Sep 21 '10 at 11:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.