ifrdescp.m

来自「冈萨雷斯的经典教材数字图像处理的matlab版源代码」· M 代码 · 共 41 行

M
41
字号
function s = ifrdescp(z, nd)
%IFRDESCP Computes inverse Fourier descriptors.
%   S = IFRDESCP(Z, ND) computes the inverse Fourier descriptors of
%   of Z, which is a sequence of Fourier descriptor obtained, for
%   example, by using function FRDESCP.  ND is the number of
%   descriptors used to computing the inverse; ND must be an even
%   integer no greater than length(Z).  If ND is omitted, it defaults
%   to length(Z).  The output, S, is a length(Z)-by-2 matrix containing
%   the coordinates of a closed boundary.

%   Copyright 2002-2004 R. C. Gonzalez, R. E. Woods, & S. L. Eddins
%   Digital Image Processing Using MATLAB, Prentice-Hall, 2004
%   $Revision: 1.6 $  $Date: 2004/11/04 22:32:04 $

% Preliminaries.
np = length(z);
% Check inputs.
if nargin == 1 | nd > np 
   nd = np; 
end

% Create an alternating sequence of 1s and -1s for use in centering
% the transform.
x = 0:(np - 1);
m = ((-1) .^ x)';

% Use only nd descriptors in the inverse.  Since the 
% descriptors are centered, (np - nd)/2 terms from each end of 
% the sequence are set to 0.  
d = round((np - nd)/2); % Round in case nd is odd.
z(1:d) = 0;
z(np - d + 1:np) = 0;
% Compute the inverse and convert back to coordinates.
zz = ifft(z);
s(:, 1) = real(zz);
s(:, 2) = imag(zz);
% Multiply by alternating 1 and -1s to undo the earlier 
% centering.
s(:, 1) = m.*s(:, 1);
s(:, 2) = m.*s(:, 2);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?