←Select platform

AddUserWords Method

Summary
Adds user words to a language dictionary.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public 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) 
void AddUserWords(  
   String^ language, 
   array<String^>^ words 
)  
def AddUserWords(self,language,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 Module - LEAD 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#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Forms.Common; 
using Leadtools.Ocr; 
using Leadtools.Drawing; 
 
public void AddUserWordsExample() 
{ 
   // Create an instance of the engine 
   using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD)) 
   { 
      // Start the engine using default parameters 
      ocrEngine.Startup(null, null, null, LEAD_VARS.OcrLEADRuntimeDir); 
 
      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 OcrLEADRuntimeDir = @"C:\LEADTOOLS22\Bin\Common\OcrLEADRuntime"; 
} 
Requirements

Target Platforms

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

Leadtools.Ocr Assembly

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