BarcodeAngleRangeArray
BarcodeAngleRangeArray
defines the range of angles (in degrees) for barcodes searching and result filtering. It is not set by default which means there is no limitation on the barcode angles.
Setting Methods
BarcodeAngleRangeArray
can be set via JSON template.
As JSON Parameter
BarcodeAngleRangeArray
as a JSON parameter is defined as below.
Key Name | Key Value |
---|---|
BarcodeAngleRangeArray | A JSON Object array while each Object is defined as below. |
Key Name | Key Value | Description |
---|---|---|
MinValue | A number from [0, 360] | Sets the minimum barcode angle. |
MaxValue | A number from [0, 360] | Sets the maximum barcode angle . |
JSON Example
{
"BarcodeAngleRangeArray": [
{
"MinValue": 100,
"MaxValue": 200
}
]
}