Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.9
|
Leadtools.Forms.Ocr Assembly > Leadtools.Forms.Ocr Namespace : IOcrZoneManager Interface |
public interface IOcrZoneManager
'Declaration
Public Interface IOcrZoneManager
'Usage
Dim instance As IOcrZoneManager
public interface IOcrZoneManager
@interface LTOcrZoneManager : NSObject
public class OcrZoneManager
function Leadtools.Forms.Ocr.IOcrZoneManager()
public interface class IOcrZoneManager
You can access the instance of the IOcrZoneManager used by an IOcrEngine through the IOcrEngine.ZoneManager property.
When calling the IOcrPage.AutoZone method on a page, the generated zone's type (OcrZone.ZoneType) will always be one of the supported values as reported by the IOcrZoneManager.
Before manually changing any of the above zone properties, you must determine whether the particular value is supported by this instance of IOcrEngine by using IsZoneTypeSupported first.
To get all the supported zone types use GetSupportedZoneTypes.
This example will show the different zone types supported by the Advantage OCR engine.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.Forms.Ocr Imports Leadtools.Forms Imports Leadtools.Forms.DocumentWriters Imports Leadtools.WinForms <TestMethod> Public Sub ZoneManagerExample() ' Create an instance of the engine Using ocrEngine As IOcrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, False) ' Start the engine using default parameters ocrEngine.Startup(Nothing, Nothing, Nothing, LEAD_VARS.OcrAdvantageRuntimeDir) ' Get the zone manager Dim ocrZoneManager As IOcrZoneManager = ocrEngine.ZoneManager ' Show all the zone types supported by this engine Console.WriteLine("Hit enter to show the supported zone types") Console.ReadLine() Dim zoneTypes As OcrZoneType() = ocrZoneManager.GetSupportedZoneTypes() Console.WriteLine("Supported zone types:") Console.WriteLine("---------------------") For Each zoneType As OcrZoneType In zoneTypes Console.WriteLine(" {0}", zoneType) Next ' Shutdown the engine ' Note: calling Dispose will also automatically shutdown the engine if it has been started ocrEngine.Shutdown() End Using End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.Forms.Ocr; using Leadtools.Forms; using Leadtools.Forms.DocumentWriters; using Leadtools.WinForms; public void ZoneManagerExample() { // Create an instance of the engine using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, false)) { // Start the engine using default parameters ocrEngine.Startup(null, null, null, LEAD_VARS.OcrAdvantageRuntimeDir); // Get the zone manager IOcrZoneManager ocrZoneManager = ocrEngine.ZoneManager; // Show all the zone types supported by this engine Console.WriteLine("Hit enter to show the supported zone types"); //Console.ReadLine(); OcrZoneType[] zoneTypes = ocrZoneManager.GetSupportedZoneTypes(); Console.WriteLine("Supported zone types:"); Console.WriteLine("---------------------"); foreach (OcrZoneType zoneType in zoneTypes) Console.WriteLine(" {0}", zoneType); // Shutdown the engine // Note: calling Dispose will also automatically shutdown the engine if it has been started ocrEngine.Shutdown(); } }
using Leadtools; using Leadtools.Codecs; using Leadtools.Forms.Ocr; using Leadtools.Forms; using Leadtools.Forms.DocumentWriters; public void ZoneManagerExample() { // Create an instance of the engine IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.Advantage, false); // Start the engine using default parameters ocrEngine.Startup(null, null, String.Empty, Tools.OcrEnginePath); // Get the zone manager IOcrZoneManager ocrZoneManager = ocrEngine.ZoneManager; OcrZoneType[] zoneTypes = ocrZoneManager.GetSupportedZoneTypes(); Debug.WriteLine("Supported zone types:"); Debug.WriteLine("---------------------"); foreach(OcrZoneType zoneType in zoneTypes) Debug.WriteLine(" {0}", zoneType); OcrZoneRecognitionModule[] recognitionModules = ocrZoneManager.GetSupportedRecognitionModules(); Debug.WriteLine("Supported recognition modules:"); Debug.WriteLine("---------------------"); foreach(OcrZoneRecognitionModule recognitionModule in recognitionModules) Debug.WriteLine(" {0}", recognitionModule); OcrZoneFillMethod[] fillMethods = ocrZoneManager.GetSupportedFillMethods(); Debug.WriteLine("Supported fillMethods:"); Debug.WriteLine("---------------------"); foreach(OcrZoneFillMethod fillMethod in fillMethods) Debug.WriteLine(" {0}", fillMethod); // Shutdown the engine ocrEngine.Shutdown(); }