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

📄 labelim.m

📁 模式识别 MATLAB 的工具箱,比较实用,包括SVM,ICA,PCA,NN等等模式识别算法.
💻 M
字号:
%LABELIM Construct image from objectlabels in case of feature images%%	IM = LABELIM(A)%	IM = A*LABELIM%% If A is a dataset containing images stored as features, so% each pixel is an object, than IM is the image containing the% labels of the objects.% % See also DATASETS, CLASSIM% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Physics, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlandsfunction labels = labelim(a)if nargin == 0	labels = mapping('classim','fixed');	returnendif ~isfeatim(a)	error('Input should be a dataset containing images as features')end[n,m] = dataimsize(a);J = getlabn(a);labels = reshape(J,n,m);return

⌨️ 快捷键说明

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