资源简介
matlab小波变换合集

代码片段和文件信息
function y = backsamp(y)
% BACKSAMP Backsampling the subband images of the directional filter bank
%
% y = backsamp(y)
%
% Input and output are cell vector of dyadic length
%
% This function is called at the end of the DFBDEC to obtain subband images
% with overall sampling as diagonal matrices
%
% See also: DFBDEC
% Number of decomposition tree levels
n = log2(length(y));
if (n ~= round(n)) | (n < 1)
error(‘Input must be a cell vector of dyadic length‘);
end
if n == 1
% One level the decomposition filterbank shoud be Q1r
% Undo the last resampling (Q1r = R2 * D1 * R3)
for k = 1:2
y{k} = resamp(y{k} 4);
y{k}(: 1:2:end) = resamp(y{k}(: 1:2:end) 1);
y{k}(: 2:2:end) = resamp(y{k}(: 2:2:end) 1);
end
elseif n > 2
N = 2^(n-1);
for k = 1:2^(n-2)
shift = 2*k - (2^(n-2) + 1);
% The first half channels
y{2*k-1} = resamp(y{2*k-1} 3 shift);
y{2*k} = resamp(y{2*k} 3 shift);
% The second half channels
y{2*k-1+N} = resamp(y{2*k-1+N} 1 shift);
y{2*k+N} = resamp(y{2*k+N} 1 shift);
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1119 2003-09-10 23:32 contourlet_toolbox\backsamp.m
文件 177851 2003-11-10 11:45 contourlet_toolbox\barbara.png
文件 2390 2003-11-12 23:50 contourlet_toolbox\ChangeLog
文件 5127 2003-11-05 00:10 contourlet_toolbox\computescale.m
文件 3537 2003-11-11 10:45 contourlet_toolbox\Contents.m
文件 706 2003-11-11 11:41 contourlet_toolbox\COPYING
文件 3437 2003-11-10 12:22 contourlet_toolbox\decdemo.m
文件 2472 2003-11-13 00:17 contourlet_toolbox\denoisedemo.m
文件 2223 2003-11-05 22:44 contourlet_toolbox\dfbdec.m
文件 1768 2003-11-05 23:54 contourlet_toolbox\dfbdec_l.m
文件 1748 2003-11-05 08:11 contourlet_toolbox\dfbimage.m
文件 2012 2003-11-10 00:52 contourlet_toolbox\dfbrec.m
文件 1736 2003-11-06 00:18 contourlet_toolbox\dfbrec_l.m
文件 2729 2003-11-06 10:39 contourlet_toolbox\dfilters.m
文件 755 2003-04-10 10:30 contourlet_toolbox\dup.m
文件 1103 2003-04-10 10:30 contourlet_toolbox\efilter2.m
文件 1861 2003-11-05 22:25 contourlet_toolbox\extend2.m
文件 2098 2003-04-10 10:30 contourlet_toolbox\fbdec.m
文件 1507 2003-11-06 10:41 contourlet_toolbox\fbdec_l.m
文件 2360 2003-04-10 10:30 contourlet_toolbox\fbrec.m
文件 1426 2003-11-06 00:23 contourlet_toolbox\fbrec_l.m
文件 485 2003-04-10 10:30 contourlet_toolbox\ffilters.m
文件 856 2003-04-10 10:30 contourlet_toolbox\ld2quin.m
文件 662 2003-11-05 08:17 contourlet_toolbox\ldfilter.m
文件 722 2003-09-13 02:30 contourlet_toolbox\lpdec.m
文件 935 2003-09-13 02:48 contourlet_toolbox\lprec.m
文件 882 2003-11-05 08:19 contourlet_toolbox\mctrans.m
文件 775 2003-04-10 10:30 contourlet_toolbox\modulate2.m
文件 5507 2003-11-10 18:07 contourlet_toolbox\nlademo.m
文件 1238 2003-11-11 10:26 contourlet_toolbox\nlademo2.m
............此处省略39个文件信息
相关资源
- 图像小波变换MatLab源代码
- 图像的二进小波分解matlab源码(保证
- 同步挤压小波变换分离混沌干扰 mat
- 小波变换工具箱
- matlab实现一维和二维离散小波变换,
- 基于运动想象脑电信号的多特征融合
- 小波变换图像融合的matlab实现
- 小波变换法图像融合MATLAB代码
- 使用Matlab7.3开发的使用整数小波变换
- 小波变换及其MATLAB工具的应用.pdf
- 小波变换及其MATLAB工具的应用电子书
- MATLAB小波变换图像拼接技术GUI版.zip
- matlab 实现一维和二维离散小波变换,
- 图片二维小波变换的分解与重构_mat
- 用MATLAB实现基于小波变换的图像融合
- MATLAB小波变换图像处理总结
- 基于行列像素置乱和DWT小波变换的图
- 小波分析理论与matlab7实现(pdf扫描)
- matlab数字音频水印的研究与实现
- EWT 经验小波变换matlab源程序
- MATLAB小波变换.pdf
- 基于小波变换的图像压缩与matlab仿真
- matlab小波变换的代码
- 基于小波变换的信号降噪研究及其M
- matlab利用小波变换进行数字图像水印
- 地震波fft变换、小波变换对比分析m
- 采用小波变换对信号进行时频分析的
- 小波变换降噪处理及其Matlab实现
- 沙威老师构造正交小波变换矩阵的m
- 自相关与小波变换相结合法求一帧语
评论
共有 条评论