Flutter教程

OpenALPR

Contents

This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture.

https://github.com/iMicknl/cordova-plugin-openalpr

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 检索车牌OpenALPR插件的安装(Installation)

ionic cordova plugin add cordova-plugin-openalpr npm install @ionic-native/openalpr
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/openalpr

Ionic 检索车牌OpenALPR插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic 检索车牌OpenALPR插件的用法(Usage)

import { OpenALPR, OpenALPROptions, OpenALPRResult } from '@ionic-native/openalpr/ngx';


constructor(private openALPR: OpenALPR) { }

const scanOptions: OpenALPROptions = {
   country: this.openALPR.Country.EU,
   amount: 3
}

// To get imageData, you can use the @ionic-native/camera module for example. It works with DestinationType.FILE_URI and DATA_URL

this.openALPR.scan(imageData, scanOptions)
  .then((res: [OpenALPRResult]) => console.log(res))
  .catch((error: Error) => console.error(error));