CTextZone
The CTextZone
class represents a single text zone.
Definition
Namespace: dynamsoft::intermediate_results
Assembly: DynamsoftCore
class CTextZone
Methods Summary
Method | Description |
---|---|
Constructors |
The constructors. |
GetLocation |
Gets the location of the text zone. |
SetLocation |
Sets the location of the text zone. |
GetCharContoursIndices |
Gets the indices of the character contours. |
SetCharContoursIndices |
Sets the indices of the character contours. |
Constructors
The constructors.
CTextZone();
CTextZone(const CQuadrilateral& loc);
CTextZone(const CQuadrilateral& loc, const int charContoursIndices[], int charContoursCount);
Parameters
[in] loc
The location of the text zone.
[in] charContoursIndices
The indices of the character contours.
[in] charContoursCount
The count of the character contours.
GetLocation
Gets the location of the text zone.
CQuadrilateral GetLocation() const;
Return Value
Returns the location of the text zone.
SetLocation
Sets the location of the text zone.
Parameters
[in] loc
The location of the text zone.
void SetLocation(const CQuadrilateral& loc);
GetCharContoursIndices
Gets the indices of the character contours.
void GetCharContoursIndices(int** ppCharContoursIndices, int* pCharContoursCount) const;
Parameters
[in] ppCharContoursIndices
The indices of the character contours.
[in] pCharContoursCount
The count of the character contours.
SetCharContoursIndices
Sets the indices of the character contours.
Parameters
[in] charContoursIndices
The indices of the character contours.
[in] charContoursCount
The count of the character contours.
void SetCharContoursIndices(const int charContoursIndices[], int charContoursCount);