maulikdantara / tesseractdotnet

Automatically exported from code.google.com/p/tesseractdotnet
0 stars 0 forks source link

RetieveResultDetail returning numbers always #33

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1._ocr.Apply(image)
2. string result = _ocr.Apply(image);                
3.List<Word> detectedWords = _ocr.RetriveResultDetail();

What is the expected output? What do you see instead?
If the image has only alphabets, the word list should contain words made of 
alphabets, however i get words containing numbers.

What version of the product are you using? On what operating system?
Windows XP, Dotnet wrapper 3.02 with tessdata version 3.01

Please provide any additional information below.
tessdata language "eng"

Original issue reported on code.google.com by rara...@gmail.com on 6 Jun 2015 at 8:24

GoogleCodeExporter commented 8 years ago
The number of words and the number of characters in the words are correct, 
however the results retrieved are ascii values of alphabets and not the 
alphabets themselves. How to get the alphabets instead of their ascii values?

Original comment by rara...@gmail.com on 6 Jun 2015 at 8:43