Table of contents

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 : CapturedResultBase

Properties

Property Description
DecodedBarcodesResult A DecodedBarcodesResult object that represents all decoded barcode.
ParsedResult A ParsedResult that represents all parsed result items.
RecognizedTextLinesResult A RecognizedTextLinesResult object that represents all recognized text lines.
ProcessedDocumentResult A ProcessedDocumentResult objects, that represents all the detected quads, deskewed images or enhanced images.

The following properties are inherited from CapturedResultBase:

Property Type Description
OriginalImageHashId string Represents the hash id of the original image.
RotationTransformMatrix Matrix Represents the rotation transformation matrix of the original image relative to the rotated image.
ErrorCode int Represents the error code of this result.
ErrorMessage string Represents the error message of this result.

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; }

ProcessedDocumentResult

A ProcessedDocumentResult objects, that represents all the detected quads, deskewed images or enhanced images.

ProcessedDocumentResult ProcessedDocumentResult { get; }

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: