Click here to Skip to main content
15,899,313 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi guys,
I want to recognize handwriting shape and figure out which shape it probably is in the set. Simply saying, if I draw a triangle, the application should recognize it as an triangle.
How can I do this using C# or java, any help is appreciated.

Thanks in advance.
Posted
Comments
Chetzz 26-May-11 10:29am    
This is Simple. First u need to train ur code for different input shapes. This can be done by Dividing ur draw area into Grid. Now the square which is covered by Black (Written part) is taken as binary 1 and the area which is not covered with binary 0. Suppose say user has written A then divide A area into grid (Grid Should be fixed always). then see which square has been touched by it and which n all are not. Touched ones u can assign as 1 and other 0. Like wise u hav to train for all ur Sets and pre store it. Whenever something is entered compare with ur sets.This is Simple way of dealing with Alphabets.
Chetzz 26-May-11 10:33am    
Just check the example in the link below....U'll have a better idea. http://www.heatonresearch.com/articles/42/page1.html
Thilina C 27-May-11 6:17am    
I m new to this kind of thing, so forgive me if this is a stupid question.

From what I understood, this has done to identify handwriting rite, so you are saying I can use the same thing to identify shapes!!!
Thilina C 31-May-11 8:49am    
I found the answer. Please refer this link,
http://stackoverflow.com/questions/6139623/recognizing-handwritten-shapes/6139859#6139859

1 solution

 
Share this answer
 
v2

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