CapturedResult
The CapturedResult
class represents the result of a capture operation on an image. Internally, CaptureResult
stores an array that contains multiple items, each of which may be a barcode, text line, detected quad, normalized image, raw image, parsed item, etc.
Definition
Namespace: Dynamsoft.CVR
Assembly: Dynamsoft.CaptureVisionRouter.dll
public abstract class CapturedResult
Methods
Method | Description |
---|---|
GetOriginalImageHashId |
Gets the hash ID of the original image. |
GetOriginalImageTag |
Gets the tag of the original image. |
GetItems |
Gets all items in the captured result. |
GetRotationTransformMatrix |
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image. |
GetErrorCode |
Gets the error code of the capture operation. |
GetErrorString |
Gets the error message of the capture operation. |
GetDecodedBarcodesResult |
Gets the decoded barcode items from the CapturedResult . |
GetRecognizedTextLinesResult |
Gets the recognized text line items from the CapturedResult . |
GetDetectedQuadsResult |
Gets the detected quads items from the CapturedResult . |
GetNormalizedImagesResult |
Gets the normalized images items from the CapturedResult . |
GetParsedResult |
Gets the parsed result items from the CapturedResult . |
GetOriginalImageHashId
Gets the hash ID of the original image.
abstract string GetOriginalImageHashId()
Return Value
Returns the hash ID of the original image as a string.
GetOriginalImageTag
Gets the tag of the original image.
abstract ImageTag GetOriginalImageTag()
Return Value
Returns an ImageTag
object containing the tag of the original image.
See Also
GetItems
Gets all items in the captured result.
abstract CapturedResultItem[] GetItems()
Return Value
Returns a CapturedResultItem
array with all items in the captured result.
See Also
GetRotationTransformMatrix
Gets the 3x3 rotation transformation matrix of the original image relative to the rotated image.
abstract double[] GetRotationTransformMatrix()
Return Value
Returns a double array of length 9 which represents a 3x3 rotation matrix.
GetErrorCode
Gets the error code of the capture operation.
abstract int GetErrorCode()
Return Value
Returns the error code of the capture operation.
See Also
GetErrorString
Gets the error message of the capture operation.
abstract string GetErrorString()
Return Value
Returns the error message of the capture operation as a string.
GetDecodedBarcodesResult
Gets the decoded barcode items from the CapturedResult
.
abstract DecodedBarcodesResult GetDecodedBarcodesResult()
Return Value
Returns a DecodedBarcodesResult
object containing the decoded barcode items.
See Also
GetRecognizedTextLinesResult
Gets the recognized text line items from the CapturedResult
.
abstract RecognizedTextLinesResult GetRecognizedTextLinesResult()
Return Value
Returns a RecognizedTextLinesResult
object containing the recognized text line items.
See Also
GetDetectedQuadsResult
Gets the detected quads items from the CapturedResult
.
abstract DetectedQuadsResult GetDetectedQuadsResult()
Return Value
Returns a DetectedQuadsResult
object containing the detected quads items.
See Also
GetNormalizedImagesResult
Gets the normalized images items from the CapturedResult
.
abstract NormalizedImagesResult GetNormalizedImagesResult()
Return Value
Returns a NormalizedImagesResult
object containing the normalized images items.
See Also
GetParsedResult
Gets the parsed result items from the CapturedResult
.
abstract ParsedResult GetParsedResult()
Return Value
Returns a ParsedResult
object containing the parsed result items.
See Also