You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code that i am using able to fetch images from this code but not able to get id card name and cnic number detail don't know where this library code wrong in #54
are you referring to the problem with Pakistan ID you mentioned here?
BlinkID v5.4 fully supports Pakistan ID while the version that is used in BlinkID-UI (v4.11) doesn't so it just returns images.
We are no no longer updating BlinkID-UI to newest BlinkID versions because v5.0 and above allow you to support scanning of multiple different document types without having to implement country and document selection steps.
You can get support for all of the documents listed here by using BlinkIdCombinedRecognizer as shown in the sample app.
ImageStorage.addImages(recognitionResult); Intent intent = new Intent(ScanActivity.this, ResultsActivity.class); ArrayList<Parcelable> parcelableArrayList = new ArrayList<>(); parcelableArrayList.addAll(recognitionResult.getResultEntries()); intent.putExtra(ResultsActivity.EXTRA_RESULT_ENTRIES, parcelableArrayList); startActivity(intent);
The text was updated successfully, but these errors were encountered: