資源簡介
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
評論
共有 條評論