nimc_card_scanner 0.0.1+2
nimc_card_scanner: ^0.0.1+2 copied to clipboard
This is a flutter OCR implementation to scan Nigerian National IDs, Passports & Drivers License
NIMC Card Scanner #
This is a flutter OCR implementation to scan Nigerian National IDs, Passports & Drivers License and extract data from them.
This package from flutter: LaoOCR was forked, and extended for NIMC, Ecowas Passports and Drivers License.
The refactoring was proposed to also make it extendable for other more use-cases.
Installation #
Install via Flutter Pub
flutter pub add nimc_card_scanner
Usage/Examples #
ElevatedButton(
onPressed: () {
NimcCardScanner<DriverLicenseResult>()
.startScan(context)
.then(
(value) {
print(value.toString());
}
);
},
child: const Text('Scan Driver\'s License'),
),
Authors #
Please, feel free to contribute. Thank you.