Table of contents

CCapturedResultBase

The CCapturedResultBase 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::basic_structures

Assembly: DynamsoftCore

class CCapturedResultBase 

Methods Summary

Method Description
~CCapturedResultBase This is the class destructor.
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.

CCapturedResultBase Destructor

This is the class destructor.

virtual ~CCapturedResultBase(){};

GetOriginalImageHashId

Gets the hash ID of the original image.

virtual const char* GetOriginalImageHashId()const = 0;

Return value

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

GetOriginalImageTag

Gets the tag of the original image.

virtual const CImageTag* GetOriginalImageTag()const = 0;

Return value

Returns a pointer to a CImageTag object that represents the tag of the original image.

See Also

CImageTag

GetRotationTransformMatrix

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

virtual void GetRotationTransformMatrix(double matrix[9]) const = 0;

Parameters

[out] matrix A double array which represents the rotation transform matrix.

GetErrorCode

Gets the error code of the detection operation.

virtual int GetErrorCode()const = 0;

Return value

Returns the error code.

See Also

ErrorCode

GetErrorString

Gets the error message of the detection operation.

virtual const char* GetErrorString()const = 0;

Return value

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

Is this page helpful?

YesYes NoNo

In this article: