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

📄 lans_poseobj.m

📁 模式识别工具包
💻 M
字号:
%	lans_poseobj	- Initialize empty LANS pose object (i.e. structure)%%	[pobj]	= lans_poseobj(oname,method,xlist,ylist,nf)%%	_____OUTPUTS____________________________________________________________%	pobj	LANS pose obj					(col vector)%		.name	object name				(string)%		.method	Feature extraction method		(string)%		.x	list of x angles			(vector)%		.y	list of y angles			(vector)%		.f	features for each pose			Nx x Ny x Nf %		.misc	storage for miscellaneous items		(cell)%%	_____INPUTS_____________________________________________________________%	oname	object name					(string)%	xlist	list of x angles				(row vector)%	ylist	list of y angles				(row vector)%	nf	# of features					(scalar)%%	_____EXAMPLE____________________________________________________________%%	_____NOTES______________________________________________________________%	- each object contains multiple poses%%	_____SEE ALSO___________________________________________________________%	lans_posefe	lans_poseimg%%	(C) 1999.10.22 Kui-yu Chang%	http://lans.ece.utexas.edu/~kuiyu%	This program is free software; you can redistribute it and/or modify%	it under the terms of the GNU General Public License as published by%	the Free Software Foundation; either version 2 of the License, or%	(at your option) any later version.%%	This program is distributed in the hope that it will be useful,%	but WITHOUT ANY WARRANTY; without even the implied warranty of%	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the%	GNU General Public License for more details.%%	You should have received a copy of the GNU General Public License%	along with this program; if not, write to the Free Software%	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA%	or check%			http://www.gnu.org/%	_____TO DO______________________________________________________________function	[pobj]	= lans_poseobj(oname,method,xlist,ylist,nf)lx	= length(xlist);ly	= length(ylist);pobj.name	= oname;pobj.method	= method;pobj.x		= xlist;pobj.y		= ylist;pobj.f(lx,ly,nf)= 0;

⌨️ 快捷键说明

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