All Projects → BlinkID → blinkid-ui-android

BlinkID / blinkid-ui-android

Licence: other
Customizable UI library that includes camera management, scanning screen, and document selection module.

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to blinkid-ui-android

blinkid-flutter
ID scanning plugins for cross-platform apps built with Flutter.
Stars: ✭ 55 (+66.67%)
Mutual labels:  onboarding, kyc, id-card-camera, scanning-id-cards
blinkid-xamarin
ID scanning SDK, wrapped for cross-platform apps built with Xamarin.
Stars: ✭ 49 (+48.48%)
Mutual labels:  kyc, id-card-camera, scanning-id-cards
YuzuMarker
🍋 [WIP] Manga Translation Tool
Stars: ✭ 76 (+130.3%)
Mutual labels:  ocr
RN-intro-screen
Usage of intro / welcome screen in react-native as onboarding slider swiper
Stars: ✭ 15 (-54.55%)
Mutual labels:  onboarding
OCR-Test
An experiment about OCR in Android
Stars: ✭ 47 (+42.42%)
Mutual labels:  ocr
CRNN.tf2
Convolutional Recurrent Neural Network(CRNN) for End-to-End Text Recognition - TensorFlow 2
Stars: ✭ 131 (+296.97%)
Mutual labels:  ocr
PAN-Card-OCR
Retrive meaningful information from PAN Card image using tesseract-ocr 😎
Stars: ✭ 115 (+248.48%)
Mutual labels:  ocr
ocr-fileformat
Validate and transform various OCR file formats (hOCR, ALTO, PAGE, FineReader)
Stars: ✭ 142 (+330.3%)
Mutual labels:  ocr
paperless-ng
A supercharged version of paperless: scan, index and archive all your physical documents
Stars: ✭ 4,840 (+14566.67%)
Mutual labels:  ocr
pal-widgets
A collection of widgets for making amazing onboarding experience in your flutter applications
Stars: ✭ 21 (-36.36%)
Mutual labels:  onboarding
insightocr
MXNet OCR implementation. Including text recognition and detection.
Stars: ✭ 100 (+203.03%)
Mutual labels:  ocr
LoL-TFT-Champion-Masking
League Of Legends - Teamfight Tactics Champion Masking
Stars: ✭ 23 (-30.3%)
Mutual labels:  ocr
CRNN
Convolutional recurrent neural network for scene text recognition or OCR in Keras
Stars: ✭ 96 (+190.91%)
Mutual labels:  ocr
OCRmyPDF
OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched
Stars: ✭ 6,560 (+19778.79%)
Mutual labels:  ocr
answer-helper
百万英雄/冲顶大会答题助手
Stars: ✭ 14 (-57.58%)
Mutual labels:  ocr
watchman
AML/CTF/KYC/OFAC Search of global watchlist, sanctions, and politically exposed person (PEP)
Stars: ✭ 167 (+406.06%)
Mutual labels:  kyc
Form-Labeller
Use this tool to label forms, bounding boxes, and assigning types to annotations
Stars: ✭ 17 (-48.48%)
Mutual labels:  ocr
Nkocr
🔎📝 This is a module to make specifics OCRs at food products and nutritional tables.
Stars: ✭ 15 (-54.55%)
Mutual labels:  ocr
Document-Scanner-and-OCR
A simple document scanner with OCR implemented using Python and OpenCV
Stars: ✭ 31 (-6.06%)
Mutual labels:  ocr
Hyper-Table-OCR
A carefully-designed OCR pipeline for universal boarded table recognition and reconstruction.
Stars: ✭ 96 (+190.91%)
Mutual labels:  ocr

Deprecated

We recommend that you use the latest version of BlinkID SDK as it allows you to scan all supported documents without the need for country and document type selection steps.

BlinkID UI for Android

Release

BlinkID UI is a library that lets you scan any BlinkID supported document without even knowing what a Recognizer is. It includes customisable scan activity and country selection activity.

To see it in action, check our demo app.

New to BlinkID? Take a look at BlinkID SDK first.

Quick Start

Add Microblink and JitPack repositories to your root build.gradle file

allprojects {
	repositories {
		...
		maven { url 'http://maven.microblink.com' }
		maven { url 'https://jitpack.io' }
	}
}

Include BlinkID UI dependency in your app level build.gradle file

dependencies {
	implementation 'com.github.BlinkID:blinkid-ui-android:v4.11.1.3'
}

After doing a Gradle sync, you'll be able to start using BlinkID UI in your app

  • first make sure that your Microblink licence is correctly configured, check BlinkID documentation for more info
  • extend BaseDocumentScanActivity and implement required methods
    • getInitialDocument() - return the document that will be selected before the user has the chance to change it
    • shouldScanBothDocumentSides - most documents support scanning both front and back side, if you just want to scan one side, return false
    • createScanFlowListener() - this listener gets notified on scan flow updates, most importantly, you'll get final scan results in onEntireDocumentScanned method

If you want to customise scanning behavior and UI take a look at FAQ.

FAQ

How do I customise colors, icons and other resources?

To use your custom theme in scan activity, extend MbScanTheme and override attribues you want to change.

To use custom theme in country selection activity, extend either MbChooseCountryLightTheme or MbChooseCountryDarkTheme and override createDocumentChooser() in your scan activity to return your theme.

For other resources, name your resource the same as the resource you want to override in the library. For example, if you want to change torch icon, name you icon mb_ic_torch_on.

Check the sample app for examples of customisation.

How do I disable translations?

To disable translations for country names, override createLocalizationManager() and return your custom LocaleManager that limits languages to which to translate to.

If you want to disable translations for other strings, change your gradle configuration as explained here.

How do I disable scan sound or use a custom one?

In your scan activity, override createScanSuccessSoundPlayer() and return your own implementation. If you want to disable sound just return new EmptyScanSuccessPlayer().

How do I show a splash screen?

In your scan activity, override createSplashOverlaySettings() and return your own implementation.

How do I change scan timeout behavior?

In your scan activity, override createScanTimeoutHandler() and return your own implementation. If you just want to change timeout duration you can use DefaultScanTimeoutHandler.

How do I disable or change scan line animation?

In your scan activity, override createScanLineAnimator() and return your own implementation. If you want to disable the animation, just return new EmptyScanLineAnimator(). If you just want to change line color, provide mbScanIconScanLine attribute in your scan activity theme.

How do I limit selection to specific countries and document types?

In your scan activity, override createDocumentChooser() and return your own subclass of DefaultDocumentChooser, in which you'll override getCountryFilter() to return your desired filter and override getAllowedDocumentTypes() to return only allowed document types for a specific country.

How do I use custom country selection activity?

In your scan activity, override createDocumentChooser() and return your own implementation. Start your country selection activity in onChooseCountryClick().

How can I get success frames?

In your scan activity, override getFrameGrabberMode() and return FrameGrabberMode.SUCCESS_FRAMES. Then override createFrameListener() and return listener that will handle success frames.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].