Need better scanning performance?
Text Line Area Points
Text line area points parameters defines the position of the text lines with the vertices points. The point coordinates are measured in percentage based on the size of the TargetROI. Only the text lines that located in this area will be processed.
JSON Structure
Location in template:
TextLineSpecificationOptions[i]
└── FirstPoint
└── SecondPoint
└── ThirdPoint
└── FourthPoint
Parent object: TextLineSpecification object
Example:
{
"FirstPoint": [ 0, 0 ],
"SecondPoint": [ 100, 0 ],
"ThirdPoint": [ 100, 20 ],
"FourthPoint": [ 0, 20 ]
}
- This snippet shows only the
Positionparameter.- To use it, embed this parameter within a TextLineSpecification object.
- For the complete JSON structure, see:
Parameter Details
FirstPoint
The top-left vertex coordinate of the the text line. The coordinate is measured in percentage.
| FirstPoint Parameter Details |
|---|
| Type int[2] |
| Range Each member of the array should be a int value between 0 to 100. |
| Default Value null |
SecondPoint
The top-right vertex coordinate of the the text line. The coordinate is measured in percentage.
| SecondPoint Parameter Details |
|---|
| Type int[2] |
| Range Each member of the array should be a int value between 0 to 100. |
| Default Value null |
ThirdPoint
The bottom-right vertex coordinate of the the text line. The coordinate is measured in percentage.
| ThirdPoint Parameter Details |
|---|
| Type int[2] |
| Range Each member of the array should be a int value between 0 to 100. |
| Default Value null |
FourthPoint
The bottom-left vertex coordinate of the the text line. The coordinate is measured in percentage.
| FourthPoint Parameter Details |
|---|
| Type int[2] |
| Range Each member of the array should be a int value between 0 to 100. |
| Default Value null |