• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-24
  • 语言: 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
%n = log2(length(y));

% See also: DFBDEC

% Number of decomposition tree levels
y=[2 3 5 7];
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

评论

共有 条评论