ex2_wt.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. %EX2_WT Example of 2-D wavelet tree (WTREE OBJECT).
  2. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 16-Sep-1999.
  3. %   Last Revision: 18-Oct-1999.
  4. %   Copyright 1995-2002 The MathWorks, Inc.
  5. %   $Revision: 1.4 $  $Date: 2002/04/14 19:32:00 $ 
  6. % load the image.
  7.   load woman;
  8. % Define the level and the wavelet.   
  9.   lev = 2;
  10.   wav = 'db1';
  11. % Create the wavelet tree.
  12.   t = wtree(X,lev,wav);
  13. % Plot tree t.
  14.   plot(t)
  15. %---------------------------------------------------
  16. % Change Node Label from Depth_Position to Index.
  17. % Click the node (5). You get the following plot.
  18. %
  19. % HERE NEW PLOT
  20. %---------------------------------------------------
  21. % Click the node (2). You obtain the following plot.
  22. %
  23. % HERE NEW PLOT
  24. %---------------------------------------------------
  25. % Change Node Action from Visualize to Split_Merge.
  26. % Split the node (5).
  27. % Change Node Action from Split_Merge to Visualize.
  28. % Click the node (21). You obtain the following plot.
  29. %
  30. % HERE NEW PLOT
  31. %---------------------------------------------------