📄 makeorientationpyramid.m
字号:
% makeOrientationPyramid - creates an orientation pyramid.%% oriPyr = makeOrientationPyramid(intPyr,gaborParams,angle)% Creates an orientation pyramid from a given intensity% pyramid with Gabor filters defined in gaborParams and% at the orientation given by angle (in degrees, 0 is horizontal).%% See also gaborFilterMap, makeFeaturePyramids, makeIntensityPyramid, % dataStructures.% This file is part of the SaliencyToolbox - Copyright (C) 2006-2007% 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.netfunction oriPyr = makeOrientationPyramid(intPyr,gaborParams,angle)oriPyr.origImage = intPyr.origImage;oriPyr.label = sprintf('Gabor%3.1f',angle);oriPyr.type = intPyr.type;for l=1:length(intPyr.levels) oriPyr.levels(l) = gaborFilterMap(intPyr.levels(l),gaborParams,angle); oriPyr.levels(l).label = sprintf('%s-%d',oriPyr.levels(l).label,l);endoriPyr.date = timeString;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -