←Select platform

AddUserWords Method

Summary

Adds user words to a language dictionary.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
public void AddUserWords( 
   string language, 
   string[] words 
) 
Sub AddUserWords( _ 
   ByVal language As String, _ 
   ByVal words() As String _ 
)  
void AddUserWords(  
   string language, 
   string[] words 
) 
- (void)addUserWords:(LTOcrLanguage)language 
               words:(NSArray<NSString *> *)words 
               error:(NSError **)error 
             
public void addUserWords(String language, 
                         ArrayList<String> words) 
             
function Leadtools.Forms.Ocr.IOcrSpellCheckManager.AddUserWords(  
   language , 
   words  
) 
void AddUserWords(  
   String^ language, 
   array<String^>^ words 
)  

Parameters

language
The language name. For more information about the format of language names, refer to IOcrLanguageManager.

words
Array of words to add.

Remarks

Only supported by the LEADTOOLS OCR Advantage engine.

Use this method to add user words to the current loaded dictionary. Note that the OCR engine does not automatically correct the misspelling of words unless the confidence of the characters are low.

Example

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Forms; 
using Leadtools.Forms.Ocr; 
using Leadtools.Drawing; 
 
public void AddUserWordsExample() 
{ 
   // 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); 
 
      IOcrSpellCheckManager spellCheckManager = ocrEngine.SpellCheckManager; 
 
      // Add the following words to the English dictionary 
      string[] newWord = { "OMRing", "Binarization" }; 
      spellCheckManager.AddUserWords("en", newWord); 
 
      // Now perform other OCR functions here 
 
      // Shutdown the engine 
      // Note: calling Dispose will also automatically shutdown the engine if it has been started 
      ocrEngine.Shutdown(); 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string OcrAdvantageRuntimeDir = @"C:\LEADTOOLS 19\Bin\Common\OcrAdvantageRuntime"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.Forms 
Imports Leadtools.Forms.Ocr 
Imports Leadtools.Drawing 
 
Public Sub AddUserWordsExample() 
   ' 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) 
 
      Dim spellCheckManager As IOcrSpellCheckManager = ocrEngine.SpellCheckManager 
 
      ' Add the following words to the English dictionary 
      Dim newWord() As String = {"OMRing", "Binarization"} 
      spellCheckManager.AddUserWords("en", newWord) 
 
      ' Now perform other OCR functions here 
 
      ' Shutdown the engine 
      ' Note: calling Dispose will also automatically shutdown the engine if it has been started 
      ocrEngine.Shutdown() 
   End Using 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const OcrAdvantageRuntimeDir As String = "C:\LEADTOOLS 19\Bin\Common\OcrAdvantageRuntime" 
End Class 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Forms.Ocr Assembly