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) 598 B
export { PaddleOcrService, type FlattenedPaddleOcrResult, type PaddleOcrResult, } from "./processor/paddle-ocr.service.js"; export type { Box, DebuggingOptions, DetectionOptions, ModelPathOptions, PaddleOptions, RecognitionOptions, } from "./interface.js"; export { DetectionService, type PreprocessDetectionResult, } from "./processor/detection.service.js"; export { RecognitionService, type RecognitionResult, } from "./processor/recognition.service.js"; export { DEFAULT_DEBUGGING_OPTIONS, DEFAULT_DETECTION_OPTIONS, DEFAULT_PADDLE_OPTIONS, DEFAULT_RECOGNITION_OPTIONS, } from "./constants.js";