Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CapturedResultItem
The CapturedResultItem
interface provides a common structure for representing different types of captured results. Each specific captured result item type will have its own implementation and additional properties specific to that type.
NOTE:
Depending on the functional module that generated the result item, the interface may vary:
- dynamsoft-barcode-reader: BarcodeResultItem
- dynamsoft-label-recognizer: TextLineResultItem
- dynamsoft-document-normalizer: DetectedQuadResultItem or NormalizedImageResultItem
- dynamsoft-code-parser: ParsedResultItem
interface CapturedResultItem {
readonly type: EnumCapturedResultItemType;
readonly referencedItem: CapturedResultItem;
}
type
The type of the captured result item, indicating what kind of data it represents.
See Also
referencedItem
A property of type CapturedResultItem
that represents a reference to another captured result item.