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

📄 type4detransform.m

📁 matlab官方网站中的用于图像融合技术的contourlet变换源代码
💻 M
字号:
%type4detransform.m%written by: Duncan Po%Date: June 27/2002% utility file used in tree2contourlet.m% usage: [x,y] = type4detransform(z)% decomposes z into x and y function [x,y] = type4detransform(z)row = size(z,1);col = size(z,2);z = z.';z = reshape(z, col*4, row/4);x = z(1:(col*2), :);y = z((col*2+1):col*4,:); x = reshape(x, col, row/2);y = reshape(y, col, row/2);x = x.';y = y.';

⌨️ 快捷键说明

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