type3detransform.m
上传用户:l56789
上传日期:2022-02-25
资源大小:2422k
文件大小:0k
源码类别:

图形图像处理

开发平台:

Matlab

  1. %type3detransform.m
  2. %written by: Duncan Po
  3. %Date: June 27/2002
  4. % utility file used in tree2contourlet.m
  5. % usage [x,y] = type3detransform(z)
  6. % decomposes z into x and y
  7. function [x,y] = type3detransform(z)
  8. row = size(z,1);
  9. col = size(z,2);
  10. z = z.';
  11. z = reshape(z, col*2, row/2);
  12. z = z.';
  13. x = z(:, 1:col);
  14. y = z(:,(col+1):(2*col));