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<TextZone>;
}
textZones
An array of TextZone
objects, each representing the geometric boundaries of a detected text zone within the image.
See Also