Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CharacterModel Object
Parameter Name | Description |
---|---|
CharacterModel.Name |
The name of the CharacterModel object. |
CharacterModel.DirectoryPath |
The path of the folder containing the character model files. |
CharacterModel.FilterFilePath |
The full path of the filter file which specifies the characters to be recognized. |
Name
The name of the CharacterModel object.
Remarks
It must be a unique name.
A CharacterModel is consisted by the following three files:
[Name].txt,
[Name].prototxt,
[Name].caffemodel
And optionally, it can have some assisted CharacterModels with formatted file names like:
[Name]Assist[].txt
[Name]_Assist_[].prototxt
[Name]Assist[].caffemodel
Note: [Name] is current value and [] can be customized by you own.
As Json Parameter
Json Object | Json Parameter Name | Value Type | Default Value |
---|---|---|---|
CharacterModel | Name | string | It must be a mandatory setting value. |
Json Parameter Example
{
"Name":"CharacterModel1"
}
DirectoryPath
The path of the folder containing the character model files.
As Json Parameter
Json Object | Json Parameter Name | Value Type | Default Value |
---|---|---|---|
CharacterModel | DirectoryPath | string | ”” |
Json Parameter Example
{
"DirectoryPath":"C:/CharacterModelFiles"
}
FilterFilePath
The full path of the filter file which specifies the characters to be recognized.
As Json Parameter
Json Object | Json Parameter Name | Value Type | Default Value |
---|---|---|---|
CharacterModel | FilterFilePath | string | ”” |
Json Parameter Example
{
"FilterFilePath":"C:/CharacterModelFiles/CM1_F1.txt"
}