BlinkID / blinkid-android

Everything you need to add AI-driven ID scanning into your native Android app.
https://microblink.com/identity/identity-document-scanning/
445 stars 153 forks source link

Is BlinkIdCombinedRecognizer able to set Scan Front Side Only? #229

Closed ahshingx95 closed 3 years ago

ahshingx95 commented 3 years ago

Hi

I was trying to use BlinkIdCombinedRecognizer to scan Malaysia MyKad, it has both front and back side, and it works flawlessly. But I wanted to only Scan front side, is there an option to Scan Front Side Only, and skip scan Back Side? I tried using recognizer.setSkipUnsupportedBack(true); but I know this isn't the way. But I don't see any other option. Please advice.

Thanks and Regards, Shing

mparadina commented 3 years ago

Hi @ahshingx95

For one-side scanning, you can use the BlinkID recognizer (not the Combined recognizer). This recognizer requires only one side of the supported document to extract the information, while the Combined recognizer requires scanning both sides of the document in order to extract the information.

You can see the differences between the recognizers here: https://github.com/BlinkID/blinkid-android#-blinkid-recognizer

BlinkID recognizer documentation: https://blinkid.github.io/blinkid-android/com/microblink/entities/recognizers/blinkid/generic/BlinkIdRecognizer.html

Hope this helps. Feel free to ask in case of any additional questions.

Regards, Milan

ahshingx95 commented 3 years ago

Hi @ahshingx95

For one-side scanning, you can use the BlinkID recognizer (not the Combined recognizer). This recognizer requires only one side of the supported document to extract the information, while the Combined recognizer requires scanning both sides of the document in order to extract the information.

You can see the differences between the recognizers here: https://github.com/BlinkID/blinkid-android#-blinkid-recognizer

BlinkID recognizer documentation: https://blinkid.github.io/blinkid-android/com/microblink/entities/recognizers/blinkid/generic/BlinkIdRecognizer.html

Hope this helps. Feel free to ask in case of any additional questions.

Regards, Milan

Thanks a lot for guidance, it really helps! Much appreciated and thank you!