资源简介
经典ITTI程序代码的Saliencytoolbox工具箱
代码片段和文件信息
% applyIOR - applies inhibition of return.
%
% wta = applyIOR(oldWTAwinnersaliencyParams)
% Applies inihibition of return to the winner-take-all
% network as specified in saliencyParams.IORtype.
%
% wta = applyIOR(oldWTAwinnersaliencyParamsshapeData)
% For saliencyParams.IORtype = ‘shape‘ the shapeData
% from estimateShape are needed.
%
% See also diskIOR shapeIOR estimateShape runSaliency dataStructures.
% This file is part of the SaliencyToolbox - Copyright (C) 2006-2008
% by Dirk B. Walther and the California Institute of Technology.
% See the enclosed LICENSE.TXT document for the license agreement.
% More information about this project is available at:
% http://www.saliencytoolbox.net
function wta = applyIOR(oldWTAwinnerparamsvarargin)
switch params.IORtype
case ‘None‘
wta = oldWTA;
case ‘disk‘
wta = diskIOR(oldWTAwinnerparams);
case ‘shape‘
if (isempty(varargin))
error(‘shapeIOR requires shapeData as an additional argument!‘);
end
if (isempty(varargin{1}))
wta = diskIOR(oldWTAwinnerparams);
else
wta = shapeIOR(oldWTAwinnerparamsvarargin{1});
end
otherwise
error([‘Unknown IORtype: ‘ params.IORtype]);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1356 2009-01-09 10:56 mfiles\applyIOR.asv
文件 1220 2011-09-15 10:46 mfiles\applyIOR.m
文件 1117 2011-09-19 15:44 mfiles\attenuateBorders.m
文件 877 2008-08-04 21:45 mfiles\ba
文件 3717 2008-08-04 21:45 mfiles\batchSaliency.m
文件 503 2008-08-04 21:45 mfiles\callingFunctionName.m
文件 2632 2011-11-07 19:17 mfiles\centerSurround.m
文件 1925 2008-08-04 21:45 mfiles\centerSurroundTopDown.m
文件 2325 2008-08-04 21:45 mfiles\checkImageSize.m
文件 835 2011-09-24 15:18 mfiles\clamp.m
文件 752 2008-08-04 21:45 mfiles\combineMaps.m
文件 1676 2008-08-04 21:45 mfiles\computeAllSaliencyMaps.m
文件 2032 2009-01-09 10:46 mfiles\contrastModulate.asv
文件 1887 2008-08-04 21:45 mfiles\contrastModulate.m
文件 1984 2007-06-18 15:54 mfiles\conv2PreserveEnergy.m
文件 10961 2009-01-09 10:56 mfiles\dataStructures.asv
文件 9031 2008-08-04 21:45 mfiles\dataStructures.m
文件 2596 2008-08-04 21:45 mfiles\debugMsg.m
文件 713 2008-08-04 21:45 mfiles\declareGlobal.m
文件 1168 2008-08-04 21:45 mfiles\defaultGaborParams.m
文件 1063 2008-08-04 21:45 mfiles\defaultLeakyIntFire.m
文件 1846 2008-08-04 21:45 mfiles\defaultLevelParams.m
文件 3179 2008-08-04 21:45 mfiles\defaultSaliencyParams.m
文件 1486 2009-01-09 10:56 mfiles\diskIOR.asv
文件 1351 2008-08-04 21:45 mfiles\diskIOR.m
文件 1902 2009-01-09 10:41 mfiles\displayImage.asv
文件 1871 2008-08-04 21:45 mfiles\displayImage.m
文件 1114 2008-08-04 21:45 mfiles\displayMap.m
文件 1598 2011-09-16 13:16 mfiles\displayMaps.m
文件 1138 2008-08-04 21:45 mfiles\displayPyramid.m
............此处省略78个文件信息
- 上一篇:SWAT前期数据整理说明
- 下一篇:威纶通出厂画面 程序
评论
共有 条评论