交通标识牌识别c++代码实例及运行结果

使用vs2013和opencv2.4.9在win10环境下,基于GTSRB数据集训练的交通标识牌识别代码示例。6张图片测试全对,111张测试正确率为93%,精度低于现代深度学习方法,适合初学者实践。
摘要由CSDN通过智能技术生成

运行环境:vs2013+opencv2.4.9+win10

数据来源于GTSRB

模型训练的C++代码

#include<opencv2/opencv.hpp>
#include <iostream>    
#include <fstream>
#include <vector>  
#include <string>  
#include<time.h>

using namespace cv;
using namespace std;

int main()
{
	int imgWidht = 48;//重新定义图片大小48*48
	int imgHeight = 48;

	vector<string> imgTrainPath;//输入文件名变量   
	vector<int> imgTrainLabel;
	int nLine = 0;
	string buf;
	ifstream imagePath("E:\\vs2013\\opencv_code\\GTSRBtrafficSign\\train\\trainImgPath.txt");//训练数据位置
	unsigned long n;

	while (imagePath)//读取训练样本,imageName.txt一行为路径,一行为标签,循环    
	{
		if (getline(imagePath, buf))
		{
			nLine++;
			if (nLine % 2 == 0)
			{
				imgTrainLabel.push_back(atoi(buf.c_str()));//atoi将字符串转换成整型,图片标签    
			}
			else
			{
				imgTrainPath.push_back(buf);//图像路径    
			}
		}
	}
	
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值