UNPKG

react-native-executorch

Version:

An easy way to run AI models in react native with ExecuTorch

15 lines (11 loc) 244 B
import { symbols } from '../constants/ocr/symbols'; export interface OCRDetection { bbox: OCRBbox[]; text: string; score: number; } export interface OCRBbox { x: number; y: number; } export type OCRLanguage = keyof typeof symbols;