LocalizedTextLineElement
The LocalizedTextLineElement class represents a localized text line element. It inherits from the RegionObjectElement class.
Definition
Namespace: Dynamsoft.DLR.intermediate_results
class LocalizedTextLineElement : RegionObjectElement
Inheritance: RegionObjectElement -> LocalizedTextLineElement
Methods
| Method | Description |
|---|---|
GetCharacterQuadsCount |
Gets the number of character quads in the text line. |
GetCharacterQuad |
Gets the quadrilateral of a specific character in the text line. |
GetCharacterQuads |
Gets all the quadrilaterals of all characters in the text line. |
GetRowNumber |
Gets the row number of the text line. |
SetLocation |
Sets the location of the current object. |
GetCharacterQuadsCount
Gets the number of character quads in the text line.
int GetCharacterQuadsCount()
Return value
Returns the number of character quads in the text line.
GetCharacterQuad
Gets the quadrilateral of a specific character in the text line.
int GetCharacterQuad(int index, out Quadrilateral quad)
Parameters
[in] index The index of the character.
[out] quad The quadrilateral of the character.
Return value
Returns 0 if successful, otherwise returns a negative value.
See Also
GetCharacterQuads
Gets all the quadrilaterals of all characters in the text line.
int GetCharacterQuads(out Quadrilateral[] quads)
Parameters
[out] quads The quadrilaterals of all the characters.
Return value
Returns 0 if successful, otherwise returns a negative value.
See Also
GetRowNumber
Gets the row number of the text line.
int GetRowNumber()
Return value
Returns the row number of the text line.
SetLocation
Sets the location of the current object.
int SetLocation(Quadrilateral location)
Parameters
[in] location The location of the barcode.
Return value
Returns the row number of the text line.
See Also