The NormalizedImagesResult interface holds information on normalized images, of type NormalizedImageResultItem, derived from an original image.

interface NormalizedImagesResult {
    errorCode: number;
    errorMessage?: string;
    items?: NormalizedImageResultItem[];
    originalImageHashId: string;
}

Properties

errorCode: number

The error code of the barcode reading result, if an error occurred.

errorMessage?: string

The error message of the barcode reading result, if an error occurred.

An array of NormalizedImageResultItem objects, each representing a piece of the original image after normalization.

originalImageHashId: string

The hash ID of the original image.

IntermediateResultManager.getOriginalImage