TesseractSetVariable Method |
http://www.emgu.com
Set the variable to the specific value.
Namespace:
Emgu.CV.OCR
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void SetVariable(
string variableName,
string value
)
Public Sub SetVariable (
variableName As String,
value As String
)
public:
void SetVariable(
String^ variableName,
String^ value
)
member SetVariable :
variableName : string *
value : string -> unit
Parameters
- variableName
- Type: SystemString
The name of the tesseract variable. e.g. use "tessedit_char_blacklist" to black list characters and "tessedit_char_whitelist" to white list characters. The full list of options can be found in the Tesseract OCR source code "tesseractclass.h" - value
- Type: SystemString
The value to be set
See Also