Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 927 Bytes

File metadata and controls

28 lines (20 loc) · 927 Bytes
layout title description keywords needAutoGenerateSidebar noTitleIndex
default-layout
Interface DetectedQuadsUnit - Dynamsoft Document Normalizer JS Edition API Reference
This page shows the JS edition of the interface DetectedQuadsUnit.
detected quad, JS
true
true

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

IntermediateResultUnit

DetectedQuadElement