CapturedResult
The CapturedResult
class represents the result of a capture operation on an image. Internally, CapturedResult
stores an array that contains multiple items, each of which may be a barcode, text line, detected quad, normalized image, original image, parsed item, etc.
You might also looking for:
Definition
Namespace: Dynamsoft.CaptureVisionRouter.Maui
Assembly: Dynamsoft.CaptureVisionRouter.Maui
class CapturedResult
Properties
Property | Description |
---|---|
OriginalImageHashId |
The hash id of the original image. You can use this ID to get the original image via the IntermediateResultManager class. |
RotationTransformMatrix |
The rotation transformation matrix of the original image relative to the rotated image. |
ErrorCode |
The error code associated with the capture result. |
ErrorMessage |
The error message associated with the capture result. |
DecodedBarcodesResult |
An array of BarcodeResultItem objects, each representing a decoded barcode within the original image. |
ParsedResult |
An array of ParsedResultItem objects. |
RecognizedTextLinesResult |
An array of RecognizedTextLinesResultItem objects, each representing a recognized text line within the original image. |
DetectedQuadsResult |
An array of DetectedQuadsResultItem objects, each representing a detected quad within the original image. |
NormalizedImagesResult |
An array of NormalizedImagesResultItem objects, each representing a normalized image within the original image. |
OriginalImageHashId
The hash id of the original image. You can use this ID to get the original image via the IntermediateResultManager
class.
string OriginalImageHashId { get;}
RotationTransformMatrix
The rotation transformation matrix of the original image relative to the rotated image.
Matrix RotationTransformMatrix { get; }
ErrorCode
Error code associated with the capture result.
int ErrorCode { get; }
ErrorMessage
Error string providing details about the error.
string ErrorMessage { get; }
DecodedBarcodesResult
A DecodedBarcodesResult
object that represents all decoded barcode within the original image.
DecodedBarcodesResult DecodedBarcodesResult { get; }
ParsedResult
A ParsedResult
that represents all parsed result items within the original image.
ParsedResult ParsedResult { get; }
RecognizedTextLinesResult
A RecognizedTextLinesResult
object that represents all recognized text lines within the original image.
RecognizedTextLinesResult RecognizedTextLinesResult { get; }
DetectedQuadsResult
A DetectedQuadsResult
object that represents all detected quads within the original image.
DetectedQuadsResult DetectedQuadsResult { get; }
NormalizedImagesResult
A NormalizedImagesResult
object that represents all normalized images within the original image.
NormalizedImagesResult NormalizedImagesResult { get; }