• 大小: 1.51M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-06-24
  • 语言: C/C++
  • 标签: UI界面  Pr  pe  界面  UI  

资源简介

HyperLPR带UI界面的工程(cpp文件)

资源截图

代码片段和文件信息

//
// Created by 庾金科 on 21/10/2017.
//
#include “stdafx.h“

#include “CNNRecognizer.h“

namespace pr{
    CNNRecognizer::CNNRecognizer(std::string prototxtstd::string caffemodel){
        net = cv::dnn::readNetFromCaffe(prototxt caffemodel);
    }

    label CNNRecognizer::recognizeCharacter(cv::Mat charImage){
        if(charImage.channels()== 3)
            cv::cvtColor(charImagecharImagecv::COLOR_BGR2GRAY);
        cv::Mat inputBlob = cv::dnn::blobFromImage(charImage 1/255.0 cv::Size(CHAR_INPUT_WCHAR_INPUT_H) cv::Scalar(000)false);
        net.setInput(inputBlob“data“);
        return net.forward();
    }
}

评论

共有 条评论