Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
IntermediateResultTypes
is a parameter to specify the types of intermediate result to be kept for further reference. It is a combined value of IntermediateResultType
Enumeration items. No intermediate result will be kept by default
IntermediateResultTypes
is supported to be set through RuntimeSetting
or JSON template.
PublicRuntimeSettings
MemberIntermediateResultTypes
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->intermediateResultTypes = IRT_BINARIZED_IMAGE;
reader->UpdateRuntimeSettings(pSettings);
delete pSettings;
//...other codes
See Also
PublicRuntimeSettings:
JavaScript | C | C++ | .NET | Python | Java | Java-Android | Objective-C & SwiftIntermediateResultType
EnumerationIntermediateResultTypes
as a JSON parameter is a string Array defined as below.
Key Name | Key Value |
---|---|
IntermediateResultTypes | A string array while each array item is one of the IntermediateResultType Enumeration items. |
JSON Example
{
"IntermediateResultTypes": ["IRT_BINARIZED_IMAGE", "IRT_PREDETECTED_REGION"]
}
The more types you set, the more time the process may take.
IntermediateResultTypes
has no influence on the Accuracy.
IntermediateResultTypes
has no influence on the Accuracy.
latest version