DynamsoftUtility Module
The Utility module is defined in the namespace Dynamsoft.Utility
. At present, it consists of the classes UtilityModule
, ImageManager
and MultiFrameResultCrossFilter
.
UtilityModule Class
This class defines common functionality in the Utility module. At present, it has only one method.
Name | Description |
---|---|
static getVersion() |
Returns the version of the Utility module. |
ImageManager Class
The ImageManager
class provides APIs for managing images. At present, it has only one API to save an image as a file.
Name | Description |
---|---|
saveToFile | Saves the specified image in either PNG or JPG format. |
MultiFrameResultCrossFilter Class
The MultiFrameResultCrossFilter
class provides APIs to configure the filtering of results from multiple images which have been processed consecutively. Usually these images are frames from a streaming video.
Name | Description |
---|---|
enableResultCrossVerification() | Enables or disables the verification of specific result item types. |
isResultCrossVerificationEnabled() | Checks if verification is active for a given result item type. |
enableResultDeduplication() | Enables or disables the deduplication process for specific result item types. |
isResultDeduplicationEnabled() | Checks if deduplication is active for a given result item type. |
setDuplicateForgetTime() | Sets the interval during which duplicates are disregarded for specific result item types. |
getDuplicateForgetTime() | Retrieves the interval during which duplicates are disregarded for a given result item type. |