Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
ReturnBarcodeZoneClarity
is a parameter to specify whether to return the clarity of the barcode zone. It is defined as below:
Value Type | Value Range | Default Value |
---|---|---|
int | [0, 1] | 0 |
Remarks
ReturnBarcodeZoneClarity
is supported to be set through RuntimeSetting
or JSON template.
PublicRuntimeSettings
MemberReturnBarcodeZoneClarity
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->returnBarcodeZoneClarity = 1;
reader->UpdateRuntimeSettings(pSettings);
delete pSettings;
//...other codes
See Also
PublicRuntimeSettings:
JavaScript | C | C++ | .NET | Python | Java | Java-Android | Objective-C & SwiftReturnBarcodeZoneClarity
as a JSON parameter is a number value defined as below.
Key Name | Key Value |
---|---|
ReturnBarcodeZoneClarity | A number from [0, 1] |
JSON Example
{
"ReturnBarcodeZoneClarity": 1
}
Disabling ReturnBarcodeZoneClarity
may improve the Speed.
ReturnBarcodeZoneClarity
has no influence on the Read Rate.
ReturnBarcodeZoneClarity
has no influence on the Accuracy.
latest version