资源简介
经典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前期数据整理说明
- 下一篇:威纶通出厂画面 程序
相关资源
- Writing A Compiler In Go.pdf
- itti论文整理
- Itti 的算法代码
- BitTiger硅谷程序员面试宝典
- 视觉注意VISUAL ATTENTION
- kitti数据pose
- 深度学习与自动驾驶领域的数据集K
- GBVS视觉显著性代码
- KITTI数据集点云地图构建资料.rar
- itti视觉显著性计算模型opencv实现
- KITTI数据集介绍
- 视觉显著模型代码合集
- 视觉注意力模型实现
- AVOD论文讲解PPT
- KITTI_odometry_百度云.txt
- KITTI数据集最全网盘地址.txt
- 一键kitti数据集的脚本
- KITTI数据集00序列times.txt文件
- Reg_Calculator_v1.67.xlsx
- 基于视觉熵的视觉注意计算模型
- KITTI数据集转化为VOC数据集,用于yo
- kitti转为VOC.zip
- kitti百度云.txt
- Itti模型源码
- 视觉注意计算模型
- On generalized Hermitian and skew-Hermitian sp
- 视觉注意指向性的研究综述
- 烯丙基磷叶立德与羰基化合物的viny
- KITTI自动驾驶所有文件.tar.gz
- 将 kitti 数据集 odometry 中kitti格式的
评论
共有 条评论