File: WT2DVisu.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (34 lines) | stat: -rw-r--r-- 878 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

WT2DVisu(2)                    Scilab Function                    WT2DVisu(2)
NAME
  WT2DVisu - Visualise a 2D Multiresolution

  Author: Bertrand Guiheneuf

  This routine constructs a matrix that shows all the wavelet coefficients of
  a 2D matrix.

Usage
  [V]=WT2DVisu(wt)

Input parameter
       o wt : real unidimensional matrix [m,n] Contains the wavelet transform
         (obtained with FWT2D).
Output parameter
       o V : real matrix [m,n] Contains a matrix to be visualized directly
Description

Introduction
  This routine is used to display all the scales and all the frequency com-
  ponents of a wavelet transform.

Parameters
  wt must be a real matrix. It's generally obtained with FWT2D.  V the
  wavelet coefficents.

Example
  a=rand(256,256); q=MakeQMF('daubechies',4); wt = FWT2D(a,8,q);
  V=WT2DVisu(wt); viewmat(V);

See Also
  FWT2D, IWT2D, WT2Dext,