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
Is there any way to get high resolution scanned image in Swift like you have in the Java sample? (https://github.com/BlinkID/blinkid-android/blob/master/BlinkIDSample/BlinkID-ImagesSample/src/main/java/com/microblink/blinkid/MainActivity.java)
The text was updated successfully, but these errors were encountered:
Hello, you can obtain the full camera frame with the saveCameraFrame property by setting it to true when defining the recognizer.
self.blinkIdRecognizer?.saveCameraFrames = true
and then in the results:
let frontCameraImage = self.blinkIdRecognizer?.result.frontCameraFrame let backCameraImage = self.blinkIdRecognizer?.result.backCameraFrame
let frontCameraImage = self.blinkIdRecognizer?.result.frontCameraFrame
let backCameraImage = self.blinkIdRecognizer?.result.backCameraFrame
Sorry, something went wrong.
No branches or pull requests
Is there any way to get high resolution scanned image in Swift like you have in the Java sample? (https://github.com/BlinkID/blinkid-android/blob/master/BlinkIDSample/BlinkID-ImagesSample/src/main/java/com/microblink/blinkid/MainActivity.java)
The text was updated successfully, but these errors were encountered: