首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

MATLAB车牌识别系统运行(课设项目)

大数据 239.24KB 22 需要积分: 1
立即下载

资源介绍:

车牌识别系统是一种基于计算机视觉技术的应用,它能够自动识别和识别车辆的车牌号码。该系统通常包括以下步骤: 1. 车辆检测:通过图像处理和目标检测算法,从给定的图像或视频中检测出车辆的位置和边界框。 2. 车牌定位:在车辆检测的基础上,进一步对车辆的车牌进行定位,即确定车牌在车辆图像中的位置。 3. 字符分割:将定位到的车牌图像中的字符进行分割,以便后续处理。 4. 字符识别:使用模式识别算法,对分割后的字符进行识别,从而得到车牌的字符序列。 5. 结果输出:将车牌号码转化为可读的文本形式,并输出给用户或其他系统使用。 车牌识别系统可以应用于交通管理、停车场管理、车辆追踪等领域,能够提高工作效率和安全性。在实际应用中,车牌识别系统还需要考虑图像质量、光照条件、遮挡等因素对识别准确性的影响。
%% clear; close all; clc; mainfc; %% 自动弹出提示框读取图像 [filename filepath] = uigetfile('.jpg', '输入一个需要识别的图像'); file = strcat(filepath, filename); img = imread(file); figure; imshow(img); title('车牌图像'); %% 灰度处理 img1 = rgb2gray(img); % RGB图像转灰度图像 figure; subplot(1, 2, 1); imshow(img1); title('灰度图像'); subplot(1, 2, 2); imhist(img1); title('灰度处理后的灰度直方图'); %% 边缘提取 img4 = edge(img1, 'roberts', 0.15, 'both'); figure('name','边缘检测'); imshow(img4); title('roberts算子边缘检测'); %% 图像腐蚀 se=[1;1;1]; img5 = imerode(img4, se); figure('name','图像腐蚀'); imshow(img5); title('图像腐蚀后的图像'); %% 平滑图像,图像膨胀 se = strel('rectangle', [30, 30]); img6 = imclose(img5, se); figure('name','平滑处理'); imshow(img6); title('平滑图像的轮廓'); %% 从图像中删除所有少于2200像素8邻接 img7 = bwareaopen(img6, 2200); figure('name', '移除小对象'); imshow(img7); title('从图像中移除小对象'); %% 切割出图像 [y, x, z] = size(img7); img8 = double(img7); % 转成双精度浮点型 % 车牌的蓝色区域 % Y方向 blue_Y = zeros(y, 1); for i = 1:y for j = 1:x if(img8(i, j) == 1) % 判断车牌位置区域 blue_Y(i, 1) = blue_Y(i, 1) + 1; % 像素点统计 end end end % 找到Y坐标的最小值 img_Y1 = 1; while (blue_Y(img_Y1) < 5) && (img_Y1 < y) img_Y1 = img_Y1 + 1; end % 找到Y坐标的最大值 img_Y2 = y; while (blue_Y(img_Y2) < 5) && (img_Y2 > img_Y1) img_Y2 = img_Y2 - 1; end % x方向 blue_X = zeros(1, x); for j = 1:x for i = 1:y if(img8(i, j) == 1) % 判断车牌位置区域 blue_X(1, j) = blue_X(1, j) + 1; end end end % 找到x坐标的最小值 img_X1 = 1; while (blue_X(1, img_X1) < 5) && (img_X1 < x) img_X1 = img_X1 + 1; end % 找到x坐标的最小值 img_X2 = x; while (blue_X(1, img_X2) < 5) && (img_X2 > img_X1) img_X2 = img_X2 - 1; end % 对图像进行裁剪 img9 = img(img_Y1:img_Y2, img_X1:img_X2, :); figure('name', '定位剪切图像'); imshow(img9); title('定位剪切后的彩色车牌图像') % 保存提取出来的车牌图像 imwrite(img9, '车牌图像.jpg'); %% 对车牌图像作图像预处理 plate_img = imread('车牌图像.jpg'); % 转换成灰度图像 plate_img1 = rgb2gray(plate_img); % RGB图像转灰度图像 figure; subplot(1, 2, 1); imshow(plate_img1); title('灰度图像'); subplot(1, 2, 2); imhist(plate_img1); title('灰度处理后的灰度直方图'); % 直方图均衡化 plate_img2 = histeq(plate_img1); figure('name', '直方图均衡化'); subplot(1,2,1); imshow(plate_img2); title('直方图均衡化的图像'); subplot(1,2,2); imhist(plate_img2); title('直方图'); % 二值化处理 plate_img3 = im2bw(plate_img2, 0.76); figure('name', '二值化处理'); imshow(plate_img3); title('车牌二值图像'); % 中值滤波 plate_img4 = medfilt2(plate_img3); figure('name', '中值滤波'); imshow(plate_img4); title('中值滤波后的图像'); %% 进行字符识别 plate_img5 = dingwei(plate_img4); [m, n] = size(plate_img5); s = sum(plate_img5); %sum(x)就是竖向相加,求每列的和,结果是行向量; j = 1; k1 = 1; k2 = 1; while j ~= n while s(j) == 0 j = j + 1; end k1 = j; while s(j) ~= 0 && j <= n-1 j = j + 1; end k2 = j + 1; if k2 - k1 > round(n / 6.5) [val, num] = min(sum(plate_img5(:, [k1+5:k2-5]))); plate_img5(:, k1+num+5) = 0; end end y1 = 10; y2 = 0.25; flag = 0; word1 = []; while flag == 0 [m, n] = size(plate_img5); left = 1; width = 0; while sum(plate_img5(:, width+1)) ~= 0 width = width + 1; end if width < y1 plate_img5(:, [1:width]) = 0; plate_img5 = dingwei(plate_img5); else temp = dingwei(imcrop(plate_img5, [1,1,width,m])); [m, n] = size(temp); all = sum(sum(temp)); two_thirds=sum(sum(temp([round(m/3):2*round(m/3)],:))); if two_thirds/all > y2 flag = 1; word1 = temp; end plate_img5(:, [1:width]) = 0; plate_img5 = dingwei(plate_img5); end end figure; subplot(2,4,1), imshow(plate_img5); % 分割出第二个字符 [word2,plate_img5]=getword(plate_img5); subplot(2,4,2), imshow(plate_img5); % 分割出第三个字符 [word3,plate_img5]=getword(plate_img5); subplot(2,4,3), imshow(plate_img5); % 分割出第四个字符 [word4,plate_img5]=getword(plate_img5); subplot(2,4,4), imshow(plate_img5); % 分割出第五个字符 [word5,plate_img5]=getword(plate_img5); subplot(2,3,4), imshow(plate_img5); % 分割出第六个字符 [word6,plate_img5]=getword(plate_img5); subplot(2,3,5), imshow(plate_img5); % 分割出第七个字符 [word7,plate_img5]=getword(plate_img5); subplot(2,3,6), imshow(plate_img5); figure; subplot(5,7,1),imshow(word1),title('1'); subplot(5,7,2),imshow(word2),title('2'); subplot(5,7,3),imshow(word3),title('3'); subplot(5,7,4),imshow(word4),title('4'); subplot(5,7,5),imshow(word5),title('5'); subplot(5,7,6),imshow(word6),title('6'); subplot(5,7,7),imshow(word7),title('7'); word1=imresize(word1,[40 20]);%imresize对图像做缩放处理,常用调用格式为:B=imresize(A,ntimes,method);其中method可选nearest,bilinear(双线性),bicubic,box,lanczors2,lanczors3等 word2=imresize(word2,[40 20]); word3=imresize(word3,[40 20]); word4=imresize(word4,[40 20]); word5=imresize(word5,[40 20]); word6=imresize(word6,[40 20]); word7=imresize(word7,[40 20]); subplot(5,7,15),imshow(word1),title('11'); subplot(5,7,16),imshow(word2),title('22'); subplot(5,7,17),imshow(word3),title('33'); subplot(5,7,18),imshow(word4),title('44'); subplot(5,7,19),imshow(word5),title('55'); subplot(5,7,20),imshow(word6),title('66'); subplot(5,7,21),imshow(word7),title('77'); imwrite(word1,'1.jpg'); % 创建七位车牌字符图像 imwrite(word2,'2.jpg'); imwrite(word3,'3.jpg'); imwrite(word4,'4.jpg'); imwrite(word5,'5.jpg'); imwrite(word6,'6.jpg'); imwrite(word7,'7.jpg'); %% 进行字符识别 liccode=char(['0':'9' 'A':'Z' '京辽鲁陕苏豫浙贵']);%建立自动识别字符代码表;'京津沪渝港澳吉辽鲁豫冀鄂湘晋青皖苏赣浙闽粤琼台陕甘云川贵黑藏蒙桂新宁' % 编号:0-9分别为 1-10;A-Z分别为 11-36; % 京 津 沪 渝 港 澳 吉 辽 鲁 豫 冀 鄂 湘 晋 青 皖 苏 % 赣 浙 闽 粤 琼 台 陕 甘 云 川 贵 黑 藏 蒙 桂 新 宁 % 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 % 60 61 62 63 64 65 66 67 68 69 70 subBw2 = zeros(40, 20); num = 1; % 车牌位数 for i = 1:7 ii = int2str(i); % 将整型数据转换为字符串型数据 word = imread([ii,'.jpg']); % 读取之前分割出的字符的图片 segBw2 = imresize(word, [40,20], 'nearest'); % 调整图片的大小 segBw2 = im2bw(segBw2, 0.5); % 图像二值化 if i == 1 % 字符第一位为汉字,定位汉字所在字段 kMin = 37; kMax = 44; elseif i == 2 % 第二位为英文字母,定位字母所在字段 kMin = 11; kMax = 36; elseif i >= 3 % 第三位开始就是数字了,定位数字所在字段 kMin = 1; kMax = 36; end l = 1; for k = kMin : kMax fname = strcat('字符模板\',liccode(k),'.jpg'); % 根据字符库找到图片模板 samBw2 = imread(fname); % 读取模板库中的图片 samBw2 = im2bw(samBw2, 0.5); % 图像二值化 % 将待识别图片与模板图片做差 for i1 = 1:40 for j1 = 1:20 subBw2(i1, j1) = segBw2(i1, j1) - samBw2(i1 ,j1); end end % 统计两幅图片不同点的个数,并保存下来 Dmax = 0; for i2 = 1:40 for j2 = 1:20 if subBw2(i2, j2) ~= 0 Dmax = Dmax + 1; end end end error(l) = Dmax; l = l + 1; end % 找到图片差别最少的图像 errorMin = min(error); findc = find(error == errorMin); % error % findc % 根据字库,对应到识别的字符 Code(num*2 - 1) = liccode(findc(1) + kMin - 1); Code(nu

资源文件列表:

MATLAB车牌识别系统运行(课设项目).zip 大约有62个文件
  1. MATLAB车牌识别系统运行(课设项目)/
  2. MATLAB车牌识别系统运行(课设项目)/1.jpg 898B
  3. MATLAB车牌识别系统运行(课设项目)/2.jpg 828B
  4. MATLAB车牌识别系统运行(课设项目)/3.jpg 690B
  5. MATLAB车牌识别系统运行(课设项目)/4.jpg 767B
  6. MATLAB车牌识别系统运行(课设项目)/5.jpg 672B
  7. MATLAB车牌识别系统运行(课设项目)/6.jpg 798B
  8. MATLAB车牌识别系统运行(课设项目)/7.jpg 698B
  9. MATLAB车牌识别系统运行(课设项目)/B.jpg 884B
  10. MATLAB车牌识别系统运行(课设项目)/dingwei.m 642B
  11. MATLAB车牌识别系统运行(课设项目)/getword.m 1.74KB
  12. MATLAB车牌识别系统运行(课设项目)/main.m 7.93KB
  13. MATLAB车牌识别系统运行(课设项目)/mainfc.p 202B
  14. MATLAB车牌识别系统运行(课设项目)/字符模板/
  15. MATLAB车牌识别系统运行(课设项目)/字符模板/0.jpg 660B
  16. MATLAB车牌识别系统运行(课设项目)/字符模板/1.jpg 482B
  17. MATLAB车牌识别系统运行(课设项目)/字符模板/2.jpg 12.06KB
  18. MATLAB车牌识别系统运行(课设项目)/字符模板/3.jpg 793B
  19. MATLAB车牌识别系统运行(课设项目)/字符模板/4.jpg 11.74KB
  20. MATLAB车牌识别系统运行(课设项目)/字符模板/5.jpg 12.05KB
  21. MATLAB车牌识别系统运行(课设项目)/字符模板/6.jpg 797B
  22. MATLAB车牌识别系统运行(课设项目)/字符模板/7.jpg 583B
  23. MATLAB车牌识别系统运行(课设项目)/字符模板/8.jpg 789B
  24. MATLAB车牌识别系统运行(课设项目)/字符模板/9.jpg 778B
  25. MATLAB车牌识别系统运行(课设项目)/字符模板/A.jpg 806B
  26. MATLAB车牌识别系统运行(课设项目)/字符模板/B.jpg 884B
  27. MATLAB车牌识别系统运行(课设项目)/字符模板/C.jpg 771B
  28. MATLAB车牌识别系统运行(课设项目)/字符模板/D.jpg 662B
  29. MATLAB车牌识别系统运行(课设项目)/字符模板/E.jpg 11.59KB
  30. MATLAB车牌识别系统运行(课设项目)/字符模板/F.jpg 11.45KB
  31. MATLAB车牌识别系统运行(课设项目)/字符模板/G.jpg 11.99KB
  32. MATLAB车牌识别系统运行(课设项目)/字符模板/H.jpg 439B
  33. MATLAB车牌识别系统运行(课设项目)/字符模板/I.jpg 11.29KB
  34. MATLAB车牌识别系统运行(课设项目)/字符模板/J.jpg 566B
  35. MATLAB车牌识别系统运行(课设项目)/字符模板/k.jpg 764B
  36. MATLAB车牌识别系统运行(课设项目)/字符模板/L.jpg 598B
  37. MATLAB车牌识别系统运行(课设项目)/字符模板/M.jpg 772B
  38. MATLAB车牌识别系统运行(课设项目)/字符模板/N.jpg 11.95KB
  39. MATLAB车牌识别系统运行(课设项目)/字符模板/O.jpg 11.96KB
  40. MATLAB车牌识别系统运行(课设项目)/字符模板/P.jpg 656B
  41. MATLAB车牌识别系统运行(课设项目)/字符模板/Q.jpg 828B
  42. MATLAB车牌识别系统运行(课设项目)/字符模板/R.jpg 12.03KB
  43. MATLAB车牌识别系统运行(课设项目)/字符模板/S.jpg 12.14KB
  44. MATLAB车牌识别系统运行(课设项目)/字符模板/T.jpg 11.17KB
  45. MATLAB车牌识别系统运行(课设项目)/字符模板/U.jpg 11.74KB
  46. MATLAB车牌识别系统运行(课设项目)/字符模板/V.jpg 793B
  47. MATLAB车牌识别系统运行(课设项目)/字符模板/W.jpg 12.02KB
  48. MATLAB车牌识别系统运行(课设项目)/字符模板/X.jpg 797B
  49. MATLAB车牌识别系统运行(课设项目)/字符模板/Y.jpg 668B
  50. MATLAB车牌识别系统运行(课设项目)/字符模板/Z.jpg 11.79KB
  51. MATLAB车牌识别系统运行(课设项目)/字符模板/京.jpg 890B
  52. MATLAB车牌识别系统运行(课设项目)/字符模板/浙.jpg 787B
  53. MATLAB车牌识别系统运行(课设项目)/字符模板/苏.jpg 824B
  54. MATLAB车牌识别系统运行(课设项目)/字符模板/豫.jpg 918B
  55. MATLAB车牌识别系统运行(课设项目)/字符模板/贵.jpg 898B
  56. MATLAB车牌识别系统运行(课设项目)/字符模板/辽.jpg 13.83KB
  57. MATLAB车牌识别系统运行(课设项目)/字符模板/陕.jpg 867B
  58. MATLAB车牌识别系统运行(课设项目)/字符模板/鲁.jpg 858B
  59. MATLAB车牌识别系统运行(课设项目)/车牌图像.jpg 3.54KB
  60. MATLAB车牌识别系统运行(课设项目)/车牌图片/
  61. MATLAB车牌识别系统运行(课设项目)/车牌图片/car1.jpg 30.97KB
  62. MATLAB车牌识别系统运行(课设项目)/车牌图片/car2.jpg 59.61KB
0评论
提交 加载更多评论
其他资源 matlab车型识别系统(课设项目)
车型识别系统是一种基于计算机视觉技术和机器学习算法的系统,用于识别和分类不同的车辆类型。它可以通过分析车辆的外观特征,如车身形状、车标、车灯等,来判断其属于哪种车型,如轿车、SUV、卡车等。 车型识别系统通常由以下几个组成部分构成: 1. 图像采集:使用摄像头或其他图像采集设备,对车辆进行拍摄或录像,获取车辆的图像数据。 2. 特征提取:对采集到的车辆图像进行处理,提取出与车辆类型相关的特征,例如车身的形状、颜色、车标等。 3. 特征匹配:将提取到的特征与预先训练好的车辆类型模型进行匹配,找出最相似的车辆类型。 4. 分类与识别:根据匹配结果,将车辆分为不同的类型,并输出识别结果。 车型识别系统在交通管理、车辆监控、智能停车等领域具有广泛应用。它可以帮助交通管理部门监控道路上不同车型的分布情况,提前做好交通规划和道路设计。同时,它还可以辅助智能停车系统,对不同车型的车辆进行分类和计费。
C++图书管理系统(数据结构)
本系统采用C++编写,运用到了数据结构(链表)的知识,没有运用STL标准模板库,详情请查看我的这一篇文章https://blog.csdn.net/weixin_51270513/article/details/141279021。欢迎大家对本系统提供建议,联系QQ:2401937272,谢谢大家。
前端开发+java+个人学习
前端开发+java+个人学习
前端开发+java+个人学习 前端开发+java+个人学习 前端开发+java+个人学习
2023最新临时文件上传存储分享系统+临时文件网盘系统源码
2023最新临时文件上传存储分享系统 临时文件网盘系统源码 带简易后台 后台登录地址http://你的域名/admin 后台key秘钥为123456
xinput1-3.dll
部分游戏启动缺失文件
Processing练习.zip
Processing的一些练习,有想练习的可以下载玩玩。
f506603c-5697-44df-bba4-738d7c493cac (2).zip
f506603c-5697-44df-bba4-738d7c493cac (2).zip
Processing练习之打字
Processing练习之打字