T O P I C R E V I E W |
fregata |
Posted - Aug 08 2012 : 02:50:25 Hello, I would like to use OCR with polish language. According to infos, I downloaded additional language file pack, unzipped it and copied file "polish" into my application directory. Than I use the following code (it's almost exact copy from help file):
sLanguageFile := 'polish'; if FileExists(IncludeTrailingPathDelimiter(ExtractFilePath(Application.ExeName)) + sLanguageFile) = False then raise Exception.create('Language file not found: ' + sLanguageFile); OCR := IEVisionLib.createOCR(sLanguageFile);
There's no error by compilation and no error while running. Just nothing happens (OCR is not processed). With the standard value: IEVisionLib.createOCR(OCR_English_Language) OCR works correctly, but of course without recognition of our special language characters.
How to use different language properly?
Jakub Sanecki |
9 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Mar 23 2013 : 03:03:05 @majoran:
Hi Mohsen, unfortunately you were asking for Arabic language support which we do not have for IEVision.
@moysoft
Email us with your registration details if you require the Indonesian language pack
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
moysoft |
Posted - Mar 22 2013 : 06:32:00 How to add my Language Indonesian? OCR Accuracy is not good to scan business card.
Moysoft.Inc (c) 2013 |
majoran |
Posted - Jan 20 2013 : 22:54:32 When I applied 2 times for me so far, but so far no results found register not |
xequte |
Posted - Jan 19 2013 : 12:35:53 Please email us with your ImageEn registration details.
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
majoran |
Posted - Jan 19 2013 : 00:58:48 i registered ImageEn for recive trial version for test this pack i need 1 language file for example for change if work this file then purchasing this pleas send to me 1 language file for example tnx |
xequte |
Posted - Jan 17 2013 : 12:59:12 Hi
These are sent when purchasing IEVision. If you are a registered ImageEn user and using the IEVision trial, you can email sales@xequte.com
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
majoran |
Posted - Jan 17 2013 : 09:45:52 where is additional language file pack ? plz help me |
fregata |
Posted - Aug 20 2012 : 02:41:56 Hello,
thanks for your reply! Using absolute path has worked :) Thank you!
Jakub Sanecki |
fab |
Posted - Aug 16 2012 : 23:27:36 Hello, in my tests it works. Please try the example named "OCR" and replace the line m_OCR := IEVisionLib.createOCR(':ENG'); // english language
...to...
m_OCR := IEVisionLib.createOCR('polish'); // english language
Try also to specify an absolute path for the language file. For example:
m_OCR := IEVisionLib.createOCR('c:\test\polish'); // english language |