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

📄 checkdescendants.m

📁 EZW implementation which will use wavelet transforms and do the compression decompression using EZW
💻 M
字号:
function   result = checkdescendants(j,X,threshold,result)
% initial set result=0
% if the result=1, means that a coefficient has at least 1 significant descendant.
global N
[m,n]=size(N);
for i=(4*j-3):4*j;
    if result==1 | i>m, 
        break;
    end;
    if abs(X(N(i,1),N(i,2)))>=threshold
        result=1;
        break; 
    else 
        result=checkdescendants(i,X,threshold,result);
    end;
end;

   



⌨️ 快捷键说明

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