I'm using a trial version of Finereader 11 to scan business cards. So far it ignores all umlauts.
Should I be initialising the engine in a different way? Do I need to specify which languages I want?
IFRDocument document = engine.CreateFRDocument();
document.AddImageFile("c:/temp/ctrk.bmp", pim, null);
IDocumentProcessingParams idpp = engine.CreateDocumentProcessingParams();
idpp.getPageProcessingParams().getRecognizerParams().setDetectLanguage(true);
document.Process(idpp);
if(document.getBusinessCards().getCount() > 0)
{
IBusinessCard card = document.getBusinessCards().getElement(0);
card.ExportToVCard("c:/temp/abbyy.vcf");
}
Here is how to detect a business card.