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

📄 fdct_usfft.m

📁 This directory includes matlab interface of the curvelet transform using usfft. Basic functions
💻 M
字号:
function C = fdct_usfft(X,isreal)% fdct_usfft - Forward curvelet transform%% Input%     X         Image%     isreal    Type of transform%                   0: complex%                   1: real% Output%     C         Curvelet coefficients%  [m,n] = size(X);  nbscales = floor(log2(min(m,n)))-3;  nbangles_coarse = 16;  allcurvelets = 0;    %call mex function  C = fdct_usfft_mex(m,n,nbscales, nbangles_coarse, allcurvelets, double(X));    if(isreal)    C = fdct_usfft_c2r(C);  end

⌨️ 快捷键说明

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