Parameter and Runtime Settings Advanced Methods
Method | Description |
---|---|
initRuntimeSettingsWithFile |
Initialize runtime settings with the settings in a given JSON file. |
initRuntimeSettingsWithString |
Initialize runtime settings with the settings in a given JSON string. |
appendTplFileToRuntimeSettings |
Append a new template file to the current runtime settings. |
appendTplStringToRuntimeSettings |
Append a new template string to the current runtime settings. |
allParameterTemplateNames |
Gets the parameter templates name array. |
outputSettingsToFile |
Output runtime settings to a settings file (JSON file). |
outputSettingsToString |
Output runtime settings to a string. |
setModeArgument |
Sets the optional argument for a specified mode in Modes parameters. |
getModeArgument |
Gets the optional argument for a specified mode in Modes parameters. |
initRuntimeSettingsWithFile
Initialize runtime settings with the parameters obtained from a JSON file.
- (void)initRuntimeSettingsWithFile:(NSString* _Nonnull)fileName
conflictMode:(EnumConflictMode)conflictMode
error:(NSError* _Nullable * _Nullable)error
NS_SWIFT_NAME(initRuntimeSettingsWithFile(_:conflictMode:));
Parameters
[in] fileName
The settings file path.
[in] conflictMode
The parameter setting mode, which decides whether to inherit parameters from previous template settings or to overwrite previous settings with the new template.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
[barcodeReader initRuntimeSettingsWithFile:@"your template file path" conflictMode:EnumConflictModeOverwrite error:nil];
try? barcodeReader.initRuntimeSettingsWithFile("your template file path", conflictMode:EnumConflictMode.overwrite)
initRuntimeSettingsWithString
Initialize runtime settings with the parameters obtained from a JSON string.
- (void)initRuntimeSettingsWithString:(NSString* _Nonnull)content
conflictMode:(EnumConflictMode)conflictMode
error:(NSError* _Nullable * _Nullable)error
NS_SWIFT_NAME(initRuntimeSettingsWithString(_:conflictMode:));
Parameters
[in] content
A JSON string that represents the content of the settings.
[in] conflictMode
The parameter setting mode, which decides whether to inherit parameters from previous template setting or to overwrite previous settings with the new template.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
[barcodeReader initRuntimeSettingsWithString:@"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_QR_CODE\"], \"ExpectedBarcodesCount\":10}}" conflictMode:EnumConflictModeOverwrite error:nil];
try? barcodeReader.initRuntimeSettingsWithString(content:"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_QR_CODE\"], \"ExpectedBarcodesCount\":10}}", conflictMode:EnumConflictMode.overwrite)
appendTplFileToRuntimeSettings
Append a new template file to the current runtime settings.
- (void)appendTplFileToRuntimeSettings:(NSString * _Nonnull)fileName
conflictMode:(EnumConflictMode)conflictMode
error:(NSError * _Nullable *_Nullable)error
NS_SWIFT_NAME(appendTplFileToRuntimeSettings(_:conflictMode:));
Parameters
[in] fileName
The settings file path.
[in] conflictMode
The parameter setting mode, which decides whether to inherit parameters from previous template settings or to overwrite previous settings with the new template.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
[barcodeReader appendTplFileToRuntimeSettings:@"your template file path" conflictMode:EnumConflictModeIgnore error:nil];
try? barcodeReader.appendTplFileToRuntimeSettings(fileName:"your template file path", conflictMode:EnumConflictMode.ignore, error:&error)
appendTplStringToRuntimeSettings
Append a new template string to the current runtime settings.
- (void)appendTplStringToRuntimeSettings:(NSString * _Nonnull)content
conflictMode:(EnumConflictMode)conflictMode
error:(NSError *_Nullable *_Nullable)error
NS_SWIFT_NAME(appendTplStringToRuntimeSettings(_:conflictMode:));
Parameters
[in] content
A JSON string that represents the content of the settings.
[in] conflictMode
The parameter setting mode, which decides whether to inherit parameters from previous template setting or to overwrite previous settings with the new template.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
[barcodeReader initRuntimeSettingsWithString:@"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_QR_CODE\"], \"ExpectedBarcodesCount\":10}}" conflictMode:EnumConflictModeOverwrite error:nil]; [barcodeReader appendTplStringToRuntimeSettings:@"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_OneD\"], \"ExpectedBarcodesCount\":20}}" conflictMode:EnumConflictModeIgnore error:nil];
try? barcodeReader.initRuntimeSettingsWithString(content:"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_QR_CODE\"], \"ExpectedBarcodesCount\":10}}", conflictMode:EnumConflictMode.Overwrite) try? barcodeReader.appendTplStringToRuntimeSettings(content:"{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_OneD\"], \"ExpectedBarcodesCount\":20}}", conflictMode:EnumConflictMode.ignore)
allParameterTemplateNames
Get count of parameter templates.
- (NSArray<NSString*>* _Nullable)allParameterTemplateNames: (NSError *__autoreleasing _Nullable * _Nullable)error;
Parameters
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Return Value
The template name array.
Code Snippet
- Objective-C
- Swift
NSArray* allTplNames = [barcodeReader allParameterTemplateNames:nil];
let allTplNames = try? barcodeReader.allParameterTemplateNames()
outputSettingsToFile
Outputs runtime settings and save them into a settings file (JSON file).
- (void)outputSettingsToFile:(NSString *_Nullable)filePath
settingsName:(NSString*_Nonnull)settingsName
error:(NSError*_Nullable *_Nullable)error
NS_SWIFT_NAME(outputSettingsToFile(_:settingsName:));
Parameters
[in] filePath
The path of the output file which stores current settings.
[in] settingsName
A unique name for declaring current runtime settings.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
settingsName = [barcodeReader outputSettingsToFile:@"your saving file path" settingsName:@"currentRuntimeSettings" error:nil];
let settingsName = try? barcodeReader.outputSettingsToFile("your saving file path", settingsName:"currentRuntimeSettings")
outputSettingsToString
Output runtime settings to a string.
- (NSString *_Nullable)outputSettingsToString:(NSString*_Nonnull)settingsName
error:(NSError* _Nullable * _Nullable)error
NS_SWIFT_NAME(outputSettingsToString(_:));
Parameters
[in] settingsName
A unique name for declaring current runtime settings.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Return Value
The output string which stores the content of current settings.
Code Snippet
- Objective-C
- Swift
settingsName = [barcodeReader outputSettingsToString:@"currentRuntimeSettings" error:nil];
let settingsName = try? barcodeReader.outputSettingsToString("currentRuntimeSettings")
setModeArgument
Sets the optional argument for a specified mode in Modes parameters.
-(void)setModeArgument:(NSString* _Nonnull)modeName
index:(NSInteger)index
argumentName:(NSString* _Nonnull)argumentName
argumentValue:(NSString* _Nonnull)argumentValue
error:(NSError* _Nullable * _Nullable)error;
Parameters
[in] modesName
The mode parameter name to set argument.
[in] index
The array index of mode parameter to indicate a specific mode.
[in] argumentName
The name of the argument to set.
[in] argumentValue
The value of the argument to set.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
- Objective-C
- Swift
iPublicRuntimeSettings *settings = [barcodeReader getRuntimeSettings:nil]; settings.binarizationModes = @[@(EnumBinarizationModeLocalBlock)]; [barcodeReader updateRuntimeSettings:settings error:nil]; [barcodeReader setModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" argumentValue:"1" error:nil];
let settings = try? barcodeReader.getRuntimeSettings() settings!.binarizationModes = [EnumBinarizationMode.localBlock] try? barcodeReader.updateRuntimeSettings(settings!) try? barcodeReader.setModeArgument("BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", argumentValue: "1")
Remarks
Check follow link for available modes and arguments:
BarcodeColourModes
BinarizationModes
ColourClusteringModes
ColourConversionModes
DeformationResistingModes
ImagePreprocessingModes
IntermediateResultSavingMode
LocalizationModes
RegionPredetectionModes
ScaleUpModes
TextFilterModes
TextureDetectionModes
getModeArgument
Gets the optional argument for a specified mode in Modes parameters.
-(NSString* _Nonnull)getModeArgument:(NSString* _Nonnull)modeName
index:(NSInteger)index
argumentName:(NSString* _Nonnull)argumentName
error:(NSError* _Nullable * _Nullable)error;
Parameters
[in] modesName
The mode parameter name to get arguments.
[in] index
The array index of mode parameter to indicate a specific mode.
[in] argumentName
The name of the argument to get.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Return Value
the optional argument for a specified mode
Code Snippet
- Objective-C
- Swift
iPublicRuntimeSettings *settings = [barcodeReader getRuntimeSettings:nil]; settings.binarizationModes = @[@(EnumBinarizationModeLocalBlock)]; [barcodeReader updateRuntimeSettings:settings error:nil]; [barcodeReader setModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" argumentValue:"1" error:nil]; argumentValue = [barcodeReader getModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" error:&error];
let settings = try? barcodeReader.getRuntimeSettings() settings?.binarizationModes![0] = EnumBinarizationMode.localBlock try? barcodeReader.updateRuntimeSettings(settings!) try? barcodeReader.setModeArgument("BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", argumentValue: "1") let argumentValue = barcodeReader.getModeArgument("BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", error: &error)
Remarks
Check follow link for available modes and arguments: