ppu-paddle-ocr
Version:
Lightweight, probably the fastest PaddleOCR SDK in TypeScript. Runs anywhere JavaScript runs: Node.js, Bun, Deno, mobile react-native, web browsers, and browser extensions. Docker & CLI supported. The official SDK is browser-only. Accurate text detection
1 lines • 297 B
JavaScript
import{BaseDetectionService}from"../core/base-detection.service.js";import{WebPlatformProvider}from"./platform.web.js";export class DetectionService extends BaseDetectionService{constructor(session,options={},debugging={}){super(new WebPlatformProvider,session,options,debugging,"canvas-native")}}