⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fpt_wp.m

📁 老外写的小波变换的工具箱
💻 M
字号:
function coef = FPT_WP(basis,x,qmf)
% FPT_WP -- Analyze image into specific wavelet packet basis
%  Usage
%    coef = FPT_WP(basis,x,qmf)
%  Inputs
%    basis    tree selecting wavelet packet basis
%    x        1-d image to be transformed into basis
%    qmf      quadrature mirror filter
%  Outputs
%    coef     1-d wavelet packet coeffts in given basis
%
%  Description
%    Once a wavelet packet basis has been selected (presumably via
%    BestBasis), this function may be used to expand a given signal
%    in that basis.
%
	[n,J] = dyadlength(x);
	coef  = ShapeAsRow(x);


%  The vector is split into high-and-low pass pieces
%  recursively, using the splits selected by the 
%  tree basis

	% initialize tree traversal stack
	stack = zeros(2,100);
	
	% pushdown root of tree
	k = 1;
	stack(:,k) = [0 0]'; % d, b

	while(k > 0),

		% pop stack
		d = stack(1,k); 
		b = stack(2,k);
		k = k-1;
		%fprintf('d b'); disp([d b])

		if(basis(node(d,b)) ~= 0) ,  % nonterminal node

			lo  = 1 + b*n/2^d; 
			hi  =     (b+1)*n/2^d;
			mid = 1 + (2*b+1)*n/(2^(d+1));
			%fprintf('[lo hi]'); disp([lo hi])

			% get channel;  split into Hi & Lo Pass
			
			sig    = coef(lo:hi);
			lpchan = DownDyadLo(sig,qmf);
			hpchan = DownDyadHi(sig,qmf);

			% store pieces according to Gray code
			
			bit = rem(b,2);
			if bit,
				coef(lo:(mid-1)) = hpchan;
				coef(mid:hi)     = lpchan;
			else
				coef(lo:(mid-1)) = lpchan;
				coef(mid:hi)     = hpchan;
			end

			% push stack
			k = k+1; stack(:,k) = [(d+1) (2*b)   ]';
			k = k+1; stack(:,k) = [(d+1) (2*b+1) ]';

		end
	end

%
% Copyright (c) 1993. David L. Donoho
% 
    
    
  %%  Part of Wavelab Version 850%  Built Tue Jan  3 13:20:40 EST 2006%  This is Copyrighted Material%  For Copying permissions see COPYING.m%  Comments? e-mail wavelab@stat.stanford.edu 

⌨️ 快捷键说明

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