←Select platform

GetSupportedCellTypes Method

Summary
Gets the cell types supported by this OCR engine.
Syntax
C#
VB
C++
public OcrZoneType[] GetSupportedCellTypes() 
Function GetSupportedCellTypes() As OcrZoneType() 
array<OcrZoneType>^ GetSupportedCellTypes();  

Return Value

An array of OcrZoneType enumeration members that specify the cell types supported by this OCR engine.

Remarks

Currently, on the LEADTOOLS OCR Module - OmniPage Engine support manipulating the cells of a table zone.

These are the only cell types that may be returned from the engine when table cells are auto-detected or you can manually set into OcrZoneCell.CellType. Setting any other cell type will result in an exception being thrown.

In the future, this restriction might be removed when more cell types are supported, it is recommended that you use GetSupportedCellTypes to programmatically get a list of the supported types and construct and user interface from the values returned from this method (for example, a combo box for cell type selection in your application).

You can use table cells in one of two ways:

  • Perform auto-zoning on the page using IOcrPage.AutoZone, if the page contains a detected table, the a zone of type OcrZoneType.Table is created for this table. If the engine successfully detects the cells of the table, then it will fill the an internal OcrZoneCell array with the properties of the detected cells.

  • Manually add a new OcrZone with its type set to OcrZoneType.Table to the zones collection of a page. Leave the value of the cells to null (Nothing in VB), now use the IOcrTableZoneManager.AutoDetectCells method to instruct the engine to detect any cells in this zone and fill the array with the data.

To manipulate a cell properties other than its bound (OcrZoneCell.Bounds), get the array of detected cells through IOcrZoneCollection.GetZoneCells, change the cell background color, style or any border color, style or with. When you are done, re-set the array using IOcrZoneCollection.SetZoneCells.

It is not recommended that you manually remove or add cells to the array, the engine is very sensitive to zone boundaries and any non-accurate information will cause an error. Instead, use the various methods of IOcrTableZoneManager to manipulate the cell location and size.

Example
C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Forms.Common; 
using Leadtools.Ocr; 
using Leadtools.Drawing; 
 
private static void GetSupportedCellTypesExample(IOcrPage ocrPage) 
{ 
   Console.WriteLine("The engine of type {0} supports these zone cell types:", ocrPage.Document.Engine.EngineType); 
   IOcrTableZoneManager ocrTableZoneManager = ocrPage.TableZoneManager; 
   if (ocrTableZoneManager != null) 
   { 
      OcrZoneType[] cellTypes = ocrTableZoneManager.GetSupportedCellTypes(); 
      foreach (OcrZoneType cellType in cellTypes) 
      { 
         Console.WriteLine(cellType.ToString()); 
      } 
   } 
   else 
   { 
      Console.WriteLine("Cells not supported."); 
   } 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.Forms 
Imports Leadtools.Ocr 
Imports Leadtools.Drawing 
 
Private Sub GetSupportedCellTypesExample(ocrPage As IOcrPage) 
   Console.WriteLine("The engine of type {0} supports these zone cell types:", ocrPage.Document.Engine.EngineType) 
   Dim ocrTableZoneManager As IOcrTableZoneManager = ocrPage.TableZoneManager 
   If ocrTableZoneManager IsNot Nothing Then 
      Dim cellTypes As OcrZoneType() = ocrTableZoneManager.GetSupportedCellTypes() 
      For Each cellType As OcrZoneType In cellTypes 
         Console.WriteLine(cellType.ToString()) 
      Next 
   Else 
      Console.WriteLine("Cells not supported.") 
   End If 
End Sub 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Ocr Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.