DetectedQuadsResult
The DetectedQuadsResult
interface holds information on detected quadrilaterals, of type DetectedQuadResultItem
, within an image.
Definition
interface DetectedQuadsResult {
readonly errorCode: number;
readonly errorString: string;
readonly originalImageHashId: string;
readonly originalImageTag: ImageTag;
readonly quadsResultItems: Array<DetectedQuadResultItem>;
}
errorCode
Error code associated with the capture result.
errorString
Error string providing details about the error.
originalImageHashId
The hash ID of the original image.
originalImageTag
The tag associated with the original image.
See Also
quadsResultItems
An array of DetectedQuadResultItem
objects, each representing a detected quadrilateral within the original image.
See Also