提交Android版实时识别功能

This commit is contained in:
iss
2019-07-24 17:00:09 +08:00
parent 74a7bdf649
commit 581d93e99c
462 changed files with 785 additions and 95 deletions
@@ -0,0 +1,30 @@
package pr.platerecognization;
import android.graphics.Bitmap;
import org.opencv.core.Mat;
/**
* @author liuxuhui
* @date 2019/6/20
*/
public class PlateInfo {
/**
* 车牌号
*/
public String plateName;
/**
* 车牌号图片
*/
public Bitmap bitmap;
public PlateInfo() {
}
public PlateInfo(String plateName, Bitmap bitmap) {
this.plateName = plateName;
this.bitmap = bitmap;
}
}