Enables or disables the to-the-latest overlapping feature of one or multiple specific result item types.
Code Snippet:
let filter = new MultiFrameResultCrossFilter();
filter.enableLatestOverlapping(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
//...
filter.enableLatestOverlapping(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
Specifies one or multiple specific result item types.
Boolean to toggle to-the-latest overlapping on or off.
Enables or disables the verification of specific result item types.
Code Snippet:
let filter = new MultiFrameResultCrossFilter();
filter.enableResultCrossVerification(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
//...
filter.enableResultCrossVerification(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
Specifies one or multiple specific result item types.
Boolean to toggle verification on or off.
Enables or disables the deduplication process for one or multiple specific result item types.
Code Snippet:
let filter = new MultiFrameResultCrossFilter();
filter.enableResultDeduplication(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, true); //enable
//...
filter.enableResultDeduplication(EnumCapturedResultItemType.CRIT_BARCODE | EnumCapturedResultItemType.CRIT_TEXT_LINE, false); //disable
Specifies one or multiple specific result item types.
Boolean to toggle deduplication on or off.
Gets the interval during which duplicates are disregarded for a given result item type.
Specifies one specific result item type.
Promise
Get the maximum overlapping frames count for a given result item type.
Specifies a result item type.
A promise that resolves the maximum overlapping frame count for the overlapping..
Checks if to-the-latest overlapping is active for a given result item type.
Specifies one specific result item type.
Promise
Checks if verification is active for a given result item type.
Specifies one specific result item type.
Promise
Checks if deduplication is active for a given result item type.
Specifies one specific result item type.
Promise
Sets the interval during which duplicates are disregarded for one or multiple specific result item types.
Specifies one or multiple specific result item types.
Time in milliseconds during which duplicates are disregarded.
Set the maximum overlapping frames count for one or multiple specific result item types. You can set it higher if:
Specifies one or multiple specific result item types.
The maximum overlapping frame count for the overlapping.
The MultiFrameResultCrossFilter class offers a set of API functions designed for managing and filtering results from multiple image frames, typically used in consecutive frames of a streaming video.
See