Reputation: 722
I'm trying to capture ID scan using MicroBlink BlinkID library I need to get both:
returnFullDocumentImage
and encodeFullDocumentImage
but I'm always getting cropped images accessing those properties:
fullDocumentFrontImage?.image
fullDocumentBackImage?.image
how to get uncropped front image of the ID?
whatever I do, I get nil when trying to access: frontCameraFrame?.image
Upvotes: 2
Views: 257
Reputation: 51
Yes, that’s correct! By setting saveCameraFrame to true, you can obtain frontCameraFrame, backCameraFrame, and barcodeCameraFrame.
Also, if you want to extract the face image or the signature from the document, you can do that:
self.blinkIdRecognizer?.result.faceImage
self.blinkIdRecognizer?.result.signatureImage
Upvotes: 3
Reputation: 722
Found it
I needed to set
blinkIdCombinedRecognizer.saveCameraFrames = true
Upvotes: 3