TextZone
The TextZone class represents a single text zone.
Definition
Namespace: com.dynamsoft.core.intermediate_results
public class TextZone
Methods
| Method | Description |
|---|---|
TextZone |
Initializes a new instance of the TextZone class. |
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. |
TextZone
Initializes a new instance of the TextZone class.
TextZone()
TextZone(Quadrilateral loc)
TextZone(Quadrilateral loc, int[] charContoursIndices)
TextZone(TextZone textZone)
Parameters
loc The location of the text zone.
charContoursIndices The indices of the character contours.
textZone Another TextZone object to copy from.
See Also
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 loc)
Parameters
loc The location of the text zone.
See Also
getCharContoursIndices
Gets the indices of the character contours.
int[] getCharContoursIndices()
Return Value
Returns an array of integers representing the indices of the character contours.
setCharContoursIndices
Sets the indices of the character contours.
void setCharContoursIndices(int[] charContoursIndices)
Parameters
charContoursIndices The indices of the character contours.