Join us for an engaging webinar, as we unravel the potential of AI for revolutionizing document management.
Watch Now
Enable your employees to remain productive throughout the document management process.
Read More
Learn how SmartZone uses a regular expression engine integrated into the recognition engine to achieve the best possible accuracy on data that can be defined by a regular expression.
Docubee is an intelligent contact automation platform built to help your team success
How do I change the default directory of the SmartZone folder from %TEMP% to something else?
As SmartZone runs, it will create a folder in the %TEMP% directory containing a few files that the engine needs to run. If you want to change this location, you can do that by creating an INI file in the same directory as the executable that runs your application. You must name that INI file smartzoneengineloader.ini. The contents of smartzoneengineloader.ini should look like this:
smartzoneengineloader.ini
[smartzoneengineloader] tempdir = C:\Your\Path\Here\
How do I change the classifier to read a specific language in SmartZone v2
Please refer to the specific code samples below:
1) If you are using the .NET control you set the Language property. For example:
SmartZone2.Reader.CharacterSet.Language = Language.WesternEuropean;
2) If you are using the ActiveX control you set the CharacterSetLanguage property. For example:
SmartZone1.CharacterSetLanguage = SZ_WesternEuropeanLanguages
How do I change between machine print and hand print recognition in the SmartZone v2 SDK?
Please refer to the specific code samples listed below:
1) If you are using the .NET control the Classifier property is set as follows according to the type of recognition you are performing (MachinePrint or HandPrint).
SmartZone2.Reader.Classifier = Classifier.MachinePrint; SmartZone2.Reader.Classifier = Classifier.HandPrint;
2) If you are using the ActiveX control the Classifier property is set as follows according to the type of recognition you are performing (MachinePrint or HandPrint).
SmartZone1.Classifier = SZ_ClassifierMachinePrint SmartZone1.Classifier = SZ_ClassifierHandPrint