Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
Defines a struct to configure the frame decoding Parameters.
@interface iFrameDecodingParameters
Attribute | Type |
---|---|
maxQueueLength |
NSInteger |
maxResultQueueLength |
NSInteger |
width |
NSInteger |
height |
NSInteger |
stride |
NSInteger |
imagePixelFormat |
EnumImagePixelFormat |
region |
iRegionDefinition |
threshold |
float |
fps |
NSInteger |
autoFilter |
NSInteger |
clarityCalculationMethod |
EnumClarityCalculationMethod |
clarityFilterMode |
EnumClarityFilterMode |
The maximum number of frames waiting for decoding.
NSInteger maxQueueLength
Value range
[0,0x7fffffff]
Default value 3
The maximum number of frames waiting results (text result/localization result) will be kept for further reference.
NSInteger maxResultQueueLength
Value range
[0,0x7fffffff]
Default value 10
The width of the frame image in pixels.
NSInteger width
Value range
[0,0x7fffffff]
Default value 0
The height of the frame image in pixels.
NSInteger height
Value range
[0,0x7fffffff]
Default value 0
The stride (or scan width) of the frame image.
NSInteger stride
Value range
[0,0x7fffffff]
Default value
0
The image pixel format used in the image byte array.
EnumImagePixelFormat imagePixelFormat
Value range
A value of EnumImagePixelFormat
Enumeration items.
Default value
EnumImagePixelFormatGrayScaled
See also
The region definition of the frame to calculate the internal indicator.
iRegionDefinition region
Default value
{ regionLeft = 0, regionRight = 100, regionTop = 0, regionBottom = 100, regionMeasuredByPercentage = 1 }
See also
The threshold used for filtering frames.
float threshold
Value range
[0, 1]
Default value
0.1
Remark
The SDK will calculate an inner indicator for each frame from AppendFrame
, if the change rate of the indicators between the current frame and the history frames is larger than the given threshold, the current frame will not be added to the inner frame queue waiting for decoding.
The frequency of calling AppendFrame
per second.
NSInteger fps
Value range
[0,0x7fffffff]
Default value
0
Remark
0 means the frequency will be calculated automatically by the SDK.
Sets whether to filter frames automatically.
NSInteger autoFilter
Value range
[0,1]
Default value
1
Remark
0: Diable filtering frames automatically. 1: Enable filtering frames automatically.
Sets the method used for calculating the clarity of the frames.
EnumClarityCalculationMethod clarityCalculationMethod
Value range
Any one of the EnumClarityCalculationMethod
Enumeration items.
Default value
EnumClarityCalculationMethodContrast
See also
Sets the mode used for filtering frames by calculated clarity.
EnumClarityFilterMode clarityFilterMode
Value range
Any one of the EnumClarityFilterMode
Enumeration items.
Default value
EnumClarityFilterModeGeneral
See also
version 7.6.0