CRecognizedTextLinesResult
The CRecognizedTextLinesResult
class represents the result of a text recognition process. It provides access to information about the recognized text lines, the source image, and any errors that occurred during the recognition process.
Definition
Namespace: dynamsoft::dlr
Assembly: DynamsoftLabelRecognizer
class CRecognizedTextLinesResult
Methods Summary
Method | Description |
---|---|
GetSourceImageHashId |
Gets the hash ID of the source image. |
GetSourceImageTag |
Gets the tag of the source image. |
GetCount |
Gets the number of text line result items in the recognition result. |
GetItem |
Gets the text line result item at the specified index. |
HasItem |
Check if the item is present in the array. |
RemoveItem |
Remove a specific item from the array in the recognition result. |
GetRotationTransformMatrix |
Get the rotation transformation matrix of the original image relative to the rotated image. |
GetErrorCode |
Gets the error code of the recognition result, if an error occurred. |
GetErrorString |
Gets the error message of the recognition result, if an error occurred. |
GetSourceImageHashId
Gets the hash ID of the source image.
virtual const char* GetSourceImageHashId() const = 0;
Return value
Returns a pointer to a null-terminated string containing the hash ID of the source image.
GetSourceImageTag
Gets the tag of the source image.
virtual const CImageTag* GetSourceImageTag() const = 0;
Return value
Returns a pointer to a CImageTag object representing the tag of the source image.
GetCount
Gets the number of text line result items in the recognition result.
virtual int GetCount() const = 0;
Return value
Returns the number of text line result items in the recognition result.
GetItem
Gets the text line result item at the specified index.
virtual const CTextLineResultItem* GetItem(int index) const = 0;
Parameters
[in] index
The zero-based index of the text line result item to retrieve.
Return value
Returns a pointer to the CTextLineResultItem object at the specified index.
HasItem
Check if the item is present in the array.
bool HasItem(const CTextLineResultItem* item) const
Parameters
[in] item
The specific item to check.
Return value
Returns a bool value indicating whether the item is present in the array or not.
RemoveItem
Remove a specific item from the array in the recognition result.
int RemoveItem(const CTextLineResultItem* item)
Parameters
[in] item
The specific item to remove.
Return value
Return value indicating whether the deletion was successful or not.
GetRotationTransformMatrix
Get the rotation transformation matrix of the original image relative to the rotated image.
void GetRotationTransformMatrix(double matrix[9]) const;
Parameters
[out] matrix
A double array which represents the rotation transform matrix.
GetErrorCode
Gets the error code of the recognition result, if an error occurred.
virtual int GetErrorCode() const = 0;
Return value
Returns the error code of the recognition result, or 0 if no error occurred.
GetErrorString
Gets the error message of the recognition result, if an error occurred.
virtual const char* GetErrorString() const = 0;
Return value
Returns a pointer to a null-terminated string containing the error message of the recognition result, or a pointer to an empty string if no error occurred.