Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have been trying to use handwriting recognition in my mvc project. My method looks like this
InkAnalyzer theInkAnalyzer = new InkAnalyzer();

theInkAnalyzer.AddStrokes(theInkCanvas.Strokes);

AnalysisStatus status = theInkAnalyzer.Analyze();

if (status.Successful)
{
textBox1.Text = theInkAnalyzer.GetRecognizedString();
}
else
{
MessageBox.Show("Recognition Failed");
}

It works well for shapes like circle,rectange etc but it doesnt recognise characters. I am either getting "Others" or "Recognition Failed". What do i have to do to recognize characters.
Posted
Updated 19-Nov-12 23:28pm
v2

1 solution

you can see this
Link
Link
 
Share this answer
 
Comments
Ruban Chandar 20-Nov-12 6:17am    
I dont want it like an application, I want to use the same code which i have written, just enable it in a way it does character recognition since it is provided already by microsoft

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900