CapturedResult
The CapturedResult class represents the result of a capture operation on an image. Internally, CapturedResult stores an array of CapturedResultItem, each of which may be a barcode, text line, detected quad, normalized image, original image, or parsed item depending on the functional product that is used.
Definition
Assembly: dynamsoft_capture_vision_flutter
class CapturedResult extends CapturedResultBase
Properties
| Property | Type | Description |
|---|---|---|
items |
List<CapturedResultItem>? | A list of CapturedResultItem objects. |
decodedBarcodesResult |
DecodedBarcodesResult | All results of type barcode in the CapturedResult as a DecodedBarcodesResult object. |
recognizedTextLinesResult |
RecognizedTextLinesResult | All results of type textLine in the CapturedResult as a RecognizedTextLinesResult object. |
processedDocumentResult |
ProcessedDocumentResult | All results of type detectedQuad, deskewedImage and enhancedImage in the CapturedResult as a ProcessedDocumentResult object. |
parsedResult |
ParsedResult | All results of type parsedResult in the CapturedResult as a ParsedResult object. |
items
A list of CapturedResultItem objects.
List<CapturedResultItem>? items;
decodedBarcodesResult
All results of type barcode in the CapturedResult as a DecodedBarcodesResult object.
DecodedBarcodesResult? decodedBarcodesResult;
recognizedTextLinesResult
All results of type textLine in the CapturedResult as a RecognizedTextLinesResult object.
RecognizedTextLinesResult? recognizedTextLinesResult;
processedDocumentResult
All results of type detectedQuad, deskewedImage and enhancedImage in the CapturedResult as a ProcessedDocumentResult object.
ProcessedDocumentResult? processedDocumentResult;
parsedResult
All results of type parsedResult in the CapturedResult as a ParsedResult object.
ParsedResult? parsedResult;