Table of contents

CapturedResultBase

The CapturedResultBase class serves as a base class for all captured result types. It is an abstract base class with multiple subclasses, each representing a different type of captured result.

Definition

Namespace: Dynamsoft.Core

public abstract class CapturedResultBase : IDisposable

Methods

Method Description
GetOriginalImageHashId Gets the hash ID of the original image.
GetOriginalImageTag Gets the tag of the original image.
GetRotationTransformMatrix Gets the rotation transformation matrix of the original image relative to the rotated image.
GetErrorCode Gets the error code of the detection operation.
GetErrorString Gets the error message of the detection operation.

GetOriginalImageHashId

Gets the hash ID of the original image.

string GetOriginalImageHashId()

Return value

Returns a null-terminated string that represents the hash ID of the original image.

GetOriginalImageTag

Gets the tag of the original image.

ImageTag GetOriginalImageTag()

Return value

Returns an ImageTag object that represents the tag of the original image.

See Also

ImageTag

GetRotationTransformMatrix

Gets the rotation transformation matrix of the original image relative to the rotated image.

double[] GetRotationTransformMatrix()

Return value

Returns a double array which represents the rotation transform matrix.

GetErrorCode

Gets the error code of the detection operation.

int GetErrorCode()

Return value

Returns the error code.

See Also

ErrorCode

GetErrorString

Gets the error message of the detection operation.

string GetErrorString()

Return value

Returns a null-terminated string that represents the error message.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: