EasyPR集成到iOS平台

EasyPR github项目地址:https://github.com/liuruoze/EasyPR

EasyPR是一个开源的中文车牌识别系统,其目标是成为一个简单、高效、准确的非限制场景(unconstrained situation)下的车牌识别库。

相比于其他的车牌识别系统,EasyPR有如下特点:

它基于openCV这个开源库。这意味着你可以获取全部源代码,并且移植到opencv支持的所有平台。
它能够识别中文。例如车牌为苏EUK722的图片,它可以准确地输出std:string类型的"苏EUK722"的结果。
它的识别率较高。图片清晰情况下,车牌检测与字符识别可以达到80%以上的精度。

集成方法

1). 集成openCV具体看这里

2). 添加srcthirdpartyincludemodel (model为蓝色)

EasyPR集成到iOS平台_第1张图片
2017092752315cc2.png

并保证

copy bundle resource里引入了蓝色文件夹model
Complie Sources添加了src和util的文件夹内cpp文件

3). Header Search Path添加$(SRCROOT)/EasyPR_iOS/include

4). 尝试#include "easypr.h"发现报错

201709273657c.png

原因应该是名字和iOSMacTypes.h的冲突了
处理方法:报错的全部加cv::前缀。

5). 尝试运行,发现报错,原因是路径的问题

EasyPR集成到iOS平台_第2张图片
2017092798999123.png

解决方法:

解决方法参考了https://github.com/zhoushiwei/EasyPR-iOS:

根据include/esaypr/config.h里的变量名,创建全局变量,并修改源码。

新建cpp文件:

SGGlobalEasyPRPath.hpp:

#ifndef SGGlobalEasyPRPath_hpp
#define SGGlobalEasyPRPath_hpp

#include 
#include 

class SGGlobalEasyPRPath {
public:
    static std::string kDefaultSvmPath;
    static std::string kLBPSvmPath;
    static std::string kHistSvmPath;    
    static std::string kDefaultAnnPath;
    static std::string kChineseAnnPath;
    static std::string kGrayAnnPath;
    static std::string kChineseMappingPath;
    SGGlobalEasyPRPath()=default;    
private:
};
#endif /* SGGlobalEasyPRPath_hpp */

SGGlobalEasyPRPath.hpp:

#include "SGGlobalEasyPRPath.hpp"

std::string SGGlobalEasyPRPath::kDefaultSvmPath;
std::string SGGlobalEasyPRPath::kLBPSvmPath;
std::string SGGlobalEasyPRPath::kHistSvmPath;

std::string SGGlobalEasyPRPath::kDefaultAnnPath;
std::string SGGlobalEasyPRPath::kChineseAnnPath;
std::string SGGlobalEasyPRPath::kGrayAnnPath;
std::string SGGlobalEasyPRPath::kChineseMappingPath;

使用之前赋给变量值,比如写到AppDelegate.mm里面:

#import "AppDelegate.h"
#include "SGGlobalEasyPRPath.hpp"
@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    NSString* bundlePath=[[NSBundle mainBundle] bundlePath];
    SGGlobalEasyPRPath::kDefaultSvmPath = [[NSString stringWithFormat:@"%@/model/svm_hist.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kLBPSvmPath = [[NSString stringWithFormat:@"%@/model/svm_lbp.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kHistSvmPath = [[NSString stringWithFormat:@"%@/model/svm_hist.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kDefaultAnnPath = [[NSString stringWithFormat:@"%@/model/ann.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kChineseAnnPath = [[NSString stringWithFormat:@"%@/model/ann_chinese.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kGrayAnnPath = [[NSString stringWithFormat:@"%@/model/annCh.xml",bundlePath] UTF8String];;
    SGGlobalEasyPRPath::kChineseMappingPath = [[NSString stringWithFormat:@"%@/model/province_mapping",bundlePath] UTF8String];;
    std::cout<<"SGGlobalEasyPRPath::mainBundle():"<< SGGlobalEasyPRPath::kChineseAnnPath  <

然后修改源代码,将用到路径的地方 #include "SGGlobalEasyPRPath.hpp"并添加前缀SGGlobalEasyPRPath::

如:kChineseMappingPath改为SGGlobalEasyPRPath::kChineseMappingPath

注意:引用SGGlobalEasyPRPath.hpp的.m文件,后缀改为.mm

5). 跑下测试效果

#import "ViewController.h"

#import 

#include "easypr.h"
using namespace cv;
using namespace easypr;

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self myFunction];
}

- (void)myFunction{
    
    cv::Mat cvImage;
    cv::Mat RGB;
    CPlateRecognize pr;
    
    NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"jpg"];
    Mat img = imread([path UTF8String]);
 
    if (img.empty()) {
        return;
    }
    cvtColor(img, RGB, COLOR_BGRA2RGB);
    vector plateVec;
    int result = pr.plateRecognize(RGB, plateVec);
    NSLog(@"result %@",@(result));
    if (result != 0) cout << "result:" << result << endl;
    if(plateVec.size()==0){
        
    }else {
        string name=plateVec[0].getPlateStr();
        NSString *resultMessage = [NSString stringWithCString:plateVec[0].getPlateStr().c_str()
                                                     encoding:NSUTF8StringEncoding];
        NSLog(@"%@",resultMessage);
    }
}
@end
EasyPR集成到iOS平台_第3张图片
2017092797713result.png

github: https://github.com/tyrad/EasyPR_iOS

你可能感兴趣的:(EasyPR集成到iOS平台)