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

📄 toon0523.m

📁 老外写的小波变换的工具箱
💻 M
字号:
% toon0523 -- Progressive Transmission
%
%  Show progressive reconstructions using the First-m coefficients
%
	global wbrain
	% 	09/29/99 MRD
	wthresh = floor(.01*65536);
	cw_brain = reshape(wbrain(:)' .* (1:65536 < wthresh), 256, 256);
	r_brain = IWT2_PO(cw_brain,3,qmf);
	subplot(221);
	AutoImage(r_brain);
	title('First 1% Reconstruction');
%
	wthresh = floor(.05*65536);
	cw_brain = reshape(wbrain(:)' .* (1:65536 < wthresh), 256, 256);
	r_brain = IWT2_PO(cw_brain,3,qmf);
	subplot(222);
	AutoImage(r_brain);
	title('First 5% Reconstruction');
%
	wthresh = floor(.10*65536);
	cw_brain = reshape(wbrain(:)' .* (1:65536 < wthresh), 256, 256);
	r_brain = IWT2_PO(cw_brain,3,qmf);
	subplot(223);
	AutoImage(r_brain);
	title('First 10% Reconstruction');
%
	wthresh = floor(.20*65536);
	cw_brain = reshape(wbrain(:)' .* (1:65536 < wthresh), 256, 256);
	r_brain = IWT2_PO(cw_brain,3,qmf);
	subplot(224);
	AutoImage(r_brain);
	title('First 20% Reconstruction');
    
    
  %%  Part of Wavelab Version 850%  Built Tue Jan  3 13:20:43 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 + -