UNPKG

vision-camera-mrz-scanner

Version:

VisionCamera Frame Processor Plugin to detect and read MRZ data from passports using MLKit Text Recognition.

10 lines (7 loc) 228 B
import type {Frame} from 'react-native-vision-camera'; import type {MRZFrame} from '../types/types'; export default function scanMRZ(frame: Frame): MRZFrame { 'worklet'; // @ts-ignore return __scanMRZ(frame); }