Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
TextZonesUnit
The TextZonesUnit
interface extends the IntermediateResultUnit
interface and represents a unit of text zones identified during the processing of an image. This interface is used to encapsulate the locations of detected text areas within an image, providing a structured representation of where text is located.
interface TextZonesUnit extends IntermediateResultUnit {
textZones: Array<Quadrilateral>;
}
textZones
An array of Quadrilateral
objects, each representing the geometric boundaries of a detected text zone within the image.
See Also