1 Star 8 Fork 0

郑辉辉/车牌识别代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
caijian.m 457 Bytes
一键复制 编辑 原始数据 按行查看 历史
guiguihui 提交于 2022-05-21 10:39 . 车牌识别部分
function bw = caijian(picture_6) %裁剪图片的函数
threshold =30 ;
picture_7=touying(picture_6);
picture_8=~picture_7;
picture_9 = bwareaopen(picture_8, threshold);%删除二值图像BW中面积小于P的对象,这里的值是50
picture_10=~picture_9;
[y,x]=size(picture_10);%对长宽重新赋值 %1为白色
bw = picture_10;
[y,x] = size(bw);
dd = fix(x/40);
ddd = fix(x/30);
dd = x - dd;
bw = bw(:,ddd:dd);
figure('NumberTitle','off','Name','边框去除'),imshow(bw),title('边框去除');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/HomeOfguiguihui/PlateRecognition.git
git@gitee.com:HomeOfguiguihui/PlateRecognition.git
HomeOfguiguihui
PlateRecognition
车牌识别代码
master

搜索帮助