gfequalorientations.m
来自「外国人写matlab 的gobor特征运算工具箱」· M 代码 · 共 34 行
M
34 行
% GFEQUALORIENTATIONS Equally spaced orientations.%% O = GFEQUALORIENTATIONS(N) returns the orientation angles% (theta) O for N equally spaced directions%% O(k) = (k-1)/N %% Examples%% See also GFCREATEFILTER2, GFCHECKFILTER2, GFCREATEFILTERF.%% References:% [1] Kamarainen, J.-K., Kyrki, V., Kalviainen, H., Gabor% Features for Invariant Object Recognition, Research% report 79, Department of Information Technology,% Lappeenranta University of Technology %% Author(s):% Joni Kamarainen <Joni.Kamarainen@lut.fi>% Ville Kyrki <Ville.Kyrki@lut.fi>%% Copyright:%% The Gabor Features in Signal and Image Processing Toolbox is% Copyright (C) 2000 by Joni Kamarainen and Ville Kyrki.%%% $Name: $ $Revision: 1.4 $ $Date: 2003-02-23 16:27:44 $%function [o]=gfequalorientations(n)orientationTicks = [0:n-1];o = orientationTicks*pi/n;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?