TextZone
The TextZone class represents a single text zone.
Definition
Namespace: Dynamsoft.Core.intermediate_results
class TextZone
Methods
| 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.
TextZone();
TextZone(Quadrilateral location);
TextZone(Quadrilateral location, int[] charContoursIndices);
Parameters
[in] location The location of the text zone.
[in] charContoursIndices The indices of the character contours.
GetLocation
Gets the location of the text zone.
Quadrilateral GetLocation()
Return Value
Returns the location of the text zone.
See Also
SetLocation
Sets the location of the text zone.
void SetLocation(Quadrilateral location)
Parameters
[in] location The location of the text zone.
See Also
GetCharContoursIndices
Gets the indices of the character contours.
int[] GetCharContoursIndices()
SetCharContoursIndices
Sets the indices of the character contours.
void SetCharContoursIndices(int[] charContoursIndices)
Parameters
[in] charContoursIndices The indices of the character contours.