• 大小: 1.1MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-16
  • 语言: Matlab
  • 标签: 图像识别  

资源简介

MATLAB图像识别中的字符定位分割

资源截图

代码片段和文件信息

%将指定的图象文件转化为灰度图象
%filename:图象文件名
%作者:重庆大学  田建国
%时间:2007年7月9日
function I=im2gray(filename)

colortype=imfinfo(filename);
colortype=colortype.ColorType;%获取图象颜色类型

%类型判断
switch(colortype)
    case ‘truecolor‘
        I=rgb2gray(imread(filename));
    case  ‘indexed‘
        [Imap]=imread(filename);
        I=ind2gray(Imap);
    otherwise
        I=imread(filename);
end
clear filename;clear colortype;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-08-11 15:01  识别定位程序挺不错的实现功能简单\
     目录           0  2017-07-13 17:40  识别定位程序挺不错的实现功能简单\car\
     文件      107862  2003-03-25 12:11  识别定位程序挺不错的实现功能简单\car\11.jpg
     文件       37700  2007-07-04 09:46  识别定位程序挺不错的实现功能简单\car\120.JPG
     文件      100602  2017-07-13 14:33  识别定位程序挺不错的实现功能简单\car\1231.jpg
     文件       79861  2017-07-13 14:25  识别定位程序挺不错的实现功能简单\car\1234.jpg
     文件      552401  2017-07-13 14:23  识别定位程序挺不错的实现功能简单\car\1236.jpg
     文件       37455  2007-07-04 09:47  识别定位程序挺不错的实现功能简单\car\126.JPG
     文件      100356  2003-03-25 12:11  识别定位程序挺不错的实现功能简单\car\13.jpg
     文件      111672  2007-04-06 16:01  识别定位程序挺不错的实现功能简单\car\14.bmp
     文件       45547  2007-03-12 17:31  识别定位程序挺不错的实现功能简单\car\2.jpg
     文件       53094  2007-03-12 17:48  识别定位程序挺不错的实现功能简单\car\5.jpg
     文件         183  2009-02-02 09:47  识别定位程序挺不错的实现功能简单\car\Matlab中文论坛--助努力的人完成毕业设计.url
     文件        4762  2017-07-18 18:55  识别定位程序挺不错的实现功能简单\car\MyCarLocal.asv
     文件        4762  2017-07-18 18:56  识别定位程序挺不错的实现功能简单\car\MyCarLocal.m
     文件       24064  2007-12-20 12:46  识别定位程序挺不错的实现功能简单\car\Thumbs.db
     文件        1906  2017-08-10 14:25  识别定位程序挺不错的实现功能简单\car\cp.jpg
     文件         467  2007-07-11 15:45  识别定位程序挺不错的实现功能简单\car\im2gray.m
     文件         121  2007-04-10 12:24  识别定位程序挺不错的实现功能简单\car\projection.m
     文件         621  2007-07-11 15:56  识别定位程序挺不错的实现功能简单\car\select.m
     文件        3543  2009-02-01 16:19  识别定位程序挺不错的实现功能简单\car\使用帮助:新手必看.htm
     文件       21542  2017-07-13 22:42  识别定位程序挺不错的实现功能简单\hs_err_pid11160.log

评论

共有 条评论