makeorientationpyramid.m
来自「显著区域检测。求的图像中感兴趣区域的位置」· M 代码 · 共 29 行
M
29 行
% 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 + =
减小字号Ctrl + -
显示快捷键?