查看原文
其他

系列 | OpenVINO视觉加速库使用四

gloomyfish OpenCV学堂 2020-02-04

点击上方蓝字关注我们

关注:OpenCV干货与教程第一时间送达!

欢迎星标或者置顶【OpenCV学堂】

基本思路

使用对象检测网络MobileNet SSD V2版本实现车辆与车牌检测,对得到车辆与车牌ROI对象,分别送到后续的车辆属性识别网络与车牌识别网络中,实现对车辆属性(颜色与车辆类型)识别输出与车牌识别输出。图示如下:

其中车辆属性识别模型输入大小为72x72,支持的颜色与车辆类别如下:

车牌识别网络支持中国所有的省市车牌,模型使用1165张中国各个省份数据作为验证集验证,准确率高达95%以上,能很好识别旋转/错切的车牌。支持输入车牌HXW=24X94

代码实现与运行

加载插件

注意可以使用多个插件,对不同的网络使用不同的插件作为计算后台,OpenVINO是支持这种方式,因为我的机器只有CPU,所以就加载了CPU插件,代码如下:

// 创建IE插件
InferenceEnginePluginPtr engine_ptr = PluginDispatcher(dirs).getSuitablePlugin(TargetDevice::eCPU);
InferencePlugin plugin(engine_ptr);

// 加载CPU扩展库支持
plugin.AddExtension(std::make_shared<Extensions::Cpu::CpuExtensions>());

加载检测与识别网络

需要预先加载对象检测与识别网络,加载好的网络信息,存储到如下结构体中:

struct MyDetectionNet {
    ExecutableNetwork net;
    std::string inputName;
    std::string sencondOutputName;
    std::string outputName;
};


加载网络的代码如下:

// 加载车辆与车牌检测网络
loadVehiclePlateNetWork(plugin);

// 加载车辆属性识别网络
loadVehicleAttributesNetWork(plugin);

// 加载车牌识别网络
loadVehicleLicenseNetWork(plugin);

输入图像数据,开始执行网络预测推断,这个部分代码实现如下:

/** Getting input blob **/
auto input = vehicleplateDetectorinfer.GetBlob(vehicleDetector.inputName);
size_t num_channels = input->getTensorDesc().getDims()[1];
size_t h = input->getTensorDesc().getDims()[2];
size_t w = input->getTensorDesc().getDims()[3];
size_t image_size = h*w;
Mat blob_image;
resize(src, blob_image, Size(h, w));

// NCHW
unsigned char* data = static_cast<unsigned char*>(input->buffer());
for (size_t row = 0; row < h; row++) {
    for (size_t col = 0; col < w; col++) {
        for (size_t ch = 0; ch < num_channels; ch++) {
            data[image_size*ch + row*w + col] = blob_image.at<Vec3b>(row, col)[ch];
        }
    }
}

// 执行预测
vehicleplateDetectorinfer.Infer();

解析输出实现车辆属性识别与车牌识别

车牌识别

Rect roi;
roi.x = rect.x - padding;
roi.y = rect.y - padding;
roi.width = rect.width + padding*2;
roi.height = rect.height + padding*2;
LicensePlateObject lpo;
lpo.location = roi;
fetchLicenseText(src(roi), lpo);
putText(src,  lpo.text.c_str(), Point(roi.x-40, roi.y - 10), FONT_HERSHEY_SIMPLEX, 0.8, Scalar(00255), 28);


车辆属性识别

VehicleObject vo;
vo.location = rect;
fetchVehicleAttributes(src(rect), vo);
putText(src, format("vehicle color: %s", vo.color.c_str()), Point(rect.x, rect.y - 20), FONT_HERSHEY_SIMPLEX, 1.0, Scalar(2550255), 28);
putText(src, format("vehicle type: %s", vo.type.c_str()), Point(rect.x, rect.y - 40), FONT_HERSHEY_SIMPLEX, 1.0, Scalar(2550255), 28);


车辆属性检测网络,输入,推断与解析输出的函数实现代码如下:

// 设置输入数据
Blob::Ptr inputBlob = vehicleAttrDetectorInfer.GetBlob(attrDetector.inputName);
matU8ToBlob<uint8_t>(blob, inputBlob);

// 执行推断图
vehicleAttrDetectorInfer.Infer();

// 获取输出结果
auto colorsValues = vehicleAttrDetectorInfer.GetBlob(attrDetector.outputName)->buffer().as<float*>();
auto typesValues = vehicleAttrDetectorInfer.GetBlob(attrDetector.sencondOutputName)->buffer().as<float*>();

// 获取最大可能行
const auto color_id = max_element(colorsValues, colorsValues + 7) - colorsValues;
const auto type_id = max_element(typesValues, typesValues + 4) - typesValues;

info.color = colors[color_id];
info.type = types[type_id];

车牌识别网络的输入,推断与解析输出的函数实现代码如下:

// 执行推断
plateLicenseRecognizerInfer.Infer();

// 解析输出结果
const auto data = plateLicenseRecognizerInfer.GetBlob(PLRDetector.outputName)->buffer().as<float*>();
string result;
for (int i = 0; i < maxSequenceSizePerPlate; i++) {
    if (data[i] == -1)
        break;
    result += items[data[i]];
}
info.text = result;

程序执行结果

行驶中抓拍车辆属性与车牌识别

静止状态下车辆属性与车牌识别

请给我一个【在看】

往期精华

使用OpenVINO ToolKit 实时推断

系列 | OpenVINO视觉加速库使用一

系列 | OpenVINO视觉加速库使用二

系列 | OpenVINO视觉加速库使用三

Tensorflow如何导出与使用预测图

干货 | OpenCV实现边缘模板匹配算法

对象检测网络中的NMS算法详解


读书谓已多

抚事知不足

                                        

【扫码关注我们】

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存