Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
DetectedQuadsUnit
The DetectedQuadsUnit
interface extends the IntermediateResultUnit
interface and represents a unit of detected quadrilaterals.
interface DetectedQuadsUnit extends IntermediateResultUnit {
detectedQuads: Array<DetectedQuadElement>;
}
detectedQuads
An array of DetectedQuadElement
objects, each representing a potential document or area of interest within the image.
See Also