type4detransform.m

来自「matlab官方网站中的用于图像融合技术的contourlet变换源代码」· M 代码 · 共 20 行

M
20
字号
%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 + =
减小字号Ctrl + -
显示快捷键?