ifrdescp.m

%源程序
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); 
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值