⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagetype.m

📁 这是采用Matlab编写的车牌识别程序,好不好下了就知
💻 M
字号:
function imgType = imagetype(CX)
% imagetype -returns the type of image CX
%    Member of IMUI
%    Kotaimen.C, 2002/05 - 2002/07, All Rights Reserved

if isbw(CX)
	imgType = 'Binary';
	return
end
if isgray(CX)
	imgType = 'Gray';
	return
end
if isrgb(CX)
	imgType = 'RGB';
	return
end
imgType = ''; %otherwise return empty string

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -