UNPKG

ppu-paddle-ocr

Version:

Blazing-fast and lightweight PaddleOCR library for Node.js and Bun. Perform accurate text detection, recognition, and image deskew with a simple, modern, and type-safe API. Ideal for document processing, data extraction, and computer vision tasks.

6 lines (5 loc) 583 B
export { PaddleOcrService, type FlattenedPaddleOcrResult, type PaddleOcrResult, } from "./processor/paddle-ocr.service"; export type { Box, DebuggingOptions, DetectionOptions, ModelPathOptions, PaddleOptions, RecognitionOptions, } from "./interface"; export { DetectionService, type PreprocessDetectionResult, } from "./processor/detection.service"; export { RecognitionService, type RecognitionResult, } from "./processor/recognition.service"; export { DEFAULT_DEBUGGING_OPTIONS, DEFAULT_DETECTION_OPTIONS, DEFAULT_PADDLE_OPTIONS, DEFAULT_RECOGNITION_OPTIONS, } from "./constants";