We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The camera will start if I manually create a MLKitView but no callback received
mounted() { LocalNotifications.requestPermission().then(() => { this.sendNotification('Starting scan', 'Scan your cards') this.initMLKit() }) } ....... initMLKit() { const image = new MLKitView(); image.cameraPosition = CameraPosition.Front image.detectionType = DetectionType.Text image.torchOn = true image.requestCameraPermission().then(() => { console.log(image.detectionType) image.on('detection', this.onDetection) }); }, onDetection(event) { alert(event) if(event.type === DetectionType.Image){ const text = event.data; this.sendNotification('Card recognized', event.data) } } }
I see the camera opens but I get zero detections
The text was updated successfully, but these errors were encountered:
Same thing happening on my side, tried with iOS device running 16.6 and 17.
Sorry, something went wrong.
No branches or pull requests
The camera will start if I manually create a MLKitView but no callback received
Steps to recreate
I see the camera opens but I get zero detections
The text was updated successfully, but these errors were encountered: