UNPKG

@idscan/idvc2

Version:

component for the capturing documents

11 lines (10 loc) 251 B
/** * detect frame quality based on comparing pixels intesivity. */ interface IData { data: Uint8ClampedArray; width: number; height: number; } export declare const getFrameQuality: ({ data, width, height }: IData) => number; export {};