this language is just made to recognize a font used on diagramms
And now when I try with my files , tesseract fail when it try to
recognize an image
Whit the debugger I have found that it bugs here in unicharset.cpp
const UNICHAR_ID UNICHARSET::unichar_to_id(const char* const
unichar_repr,int length) const {
assert(length > 0 && length <= UNICHAR_LEN);
assert(ids.contains(unichar_repr, length)); //<= bugs
here when unichar_repr = "m"
return ids.unichar_to_id(unichar_repr, length);
}
perhaps it fails cause in my unicharset i have only uppercase
letter ??
but why it detects low case letter on my picture which is one I used
to train tesseract
and which has only uppercase letters ??? (in fact there are only 40
char in my unicharset )