UNPKG

node-native-ocr

Version:

Native Node.js bindings for the Tesseract OCR project.

7 lines (6 loc) 210 B
export const recognize: (image: Buffer, options?: RecognizeOptions) => Promise<string>; export interface RecognizeOptions { lang?: string | Array<string>; output?: 'txt' | 'tsv'; tessdataPath?: string, }