Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
MinResultConfidence
is a parameter to specify the minimum confidence of the result. It is defined as below:
Value Type | Value Range | Default Value |
---|---|---|
int | [0, 100] | 30 |
MinResultConfidence
is supported to be set through RuntimeSetting
or JSON template.
PublicRuntimeSettings
MemberMinResultConfidence
can be set dynamically during runtime as a member of PublicRuntimeSettings
struct.
Code Snippet in C++
//...other codes
PublicRuntimeSettings* pSettings = new PublicRuntimeSettings;
int errorCode = reader->GetRuntimeSettings(pSettings);
pSettings->minResultConfidence = 30;
reader->UpdateRuntimeSettings(pSettings);
delete pSettings;
//...other codes
See Also
PublicRuntimeSettings:
JavaScript | C | C++ | .NET | Python | Java | Java-Android | Objective-C & SwiftMinResultConfidence
as a JSON parameter is a number value defined as below.
Key Name | Key Value |
---|---|
MinResultConfidence | A number from [0, 100] |
JSON Example
{
"MinResultConfidence": 30
}
MinResultConfidence
has no influence on the Speed.
Setting a smaller MinResultConfidence
may improve the Read Rate.
Setting a larger MinResultConfidence
may improve the Accuracy.
latest version