Products & Services Solutions Academia Support User Community Company

Two-Dimensional Discrete Stationary Wavelet Analysis

This section takes you through the features of two-dimensional discrete stationary wavelet analysis using the Wavelet Toolbox™ software. For more information, see Available Methods for De-Noising, Estimation, and Compression Using GUI Tools.

The toolbox provides these functions for image analysis. For more information, see the reference pages.

Analysis-Decomposition Function

Function Name
Purpose
swt2
Decomposition

Synthesis-Reconstruction Function

Function Name
Purpose
iswt2
Reconstruction

The stationary wavelet decomposition structure is more tractable than the wavelet one. So, the utilities useful for the wavelet case are not necessary for the Stationary Wavelet Transform (SWT).

In this section, you'll learn to

Two-Dimensional Analysis Using the Command Line

In this example, we'll show how you can use two-dimensional stationary wavelet analysis to denoise an image.

This example involves a image containing noise.

  1. Load an image.

  1. From the MATLAB® prompt, type

    • load noiswom
      whos 
      Name
      Size
      Bytes
      Class
      X
      96x96
      73728
      double array
      map
      255x3
      6120
      double array
       
      

    For the SWT, if a decomposition at level k is needed, 2^k must divide evenly into size(X,1) and size(X,2). If your original image is not of correct size, you can use the Image Extension GUI tool or the function wextend to extend it.

  1. Perform a single-level Stationary Wavelet Decomposition.

  1. Perform a single-level decomposition of the image using the db1 wavelet. Type

    • [swa,swh,swv,swd] = swt2(X,1,'db1');
      

    This generates the coefficients matrices of the level-one approximation (swa) and horizontal, vertical and diagonal details (swh, swv, and swd, respectively). Both are of size-the-image size. Type

    • whos 
      Name
      Size
      Bytes
      Class
      X
      96x96
      73728
      double array
      map
      255x3
      6120
      double array
      swa
      96x96
      73728
      double array
      swh
      96x96
      73728
      double array
      swv
      96x96
      73728
      double array
      swd
      96x96
      73728
      double array
       
      

  1. Display the coefficients of approximation and details.

  1. To display the coefficients of approximation and details at level 1, type

    • map = pink(size(map,1));
      colormap(map)
      subplot(2,2,1), image(wcodemat(swa,192));
      title('Approximation swa')
      subplot(2,2,2), image(wcodemat(swh,192));
      title('Horiz. Detail swh')
      subplot(2,2,3), image(wcodemat(swv,192));
      title('Vertical Detail swv')
      subplot(2,2,4), image(wcodemat(swd,192));
      title('Diag. Detail swd').
      

  1. Regenerate the image by Inverse Stationary Wavelet Transform.

  1. To find the inverse transform, type

    • A0 = iswt2(swa,swh,swv,swd,'db1');
      

    To check the perfect reconstruction, type

    • err = max(max(abs(X-A0)))
      
      err =
           1.1369e-13
      

  1. Construct and display approximation and details from the coefficients.

  1. To construct the level 1 approximation and details (A1, H1, V1 and D1) from the coefficients swa, swh, swv and swd, type

    • nulcfs = zeros(size(swa));
      A1 = iswt2(swa,nulcfs,nulcfs,nulcfs,'db1'); 
      H1 = iswt2(nulcfs,swh,nulcfs,nulcfs,'db1');
      V1 = iswt2(nulcfs,nulcfs,swv,nulcfs,'db1');
      D1 = iswt2(nulcfs,nulcfs,nulcfs,swd,'db1');
      

    To display the approximation and details at level 1, type

    • colormap(map)
      subplot(2,2,1), image(wcodemat(A1,192));
      title('Approximation A1')
      subplot(2,2,2), image(wcodemat(H1,192));
      title('Horiz. Detail H1')
      subplot(2,2,3), image(wcodemat(V1,192));
      title('Vertical Detail V1')
      subplot(2,2,4), image(wcodemat(D1,192));
      title('Diag. Detail D1')
      

  1. Perform a multilevel Stationary Wavelet Decomposition.

  1. To perform a decomposition at level 3 of the image (again using the db1 wavelet), type

    • [swa,swh,swv,swd] = swt2(X,3,'db1');
      

    This generates the coefficients of the approximations at levels 1, 2, and 3 (swa) and the coefficients of the details (swh, swv and swd). Observe that the matrices swa(:,:,i), swh(:,:,i), swv(:,:,i), and swd(:,:,i) for a given level i are of size-the-image size. Type

    • clear A0 A1 D1 H1 V1 err nulcfs
      whos 
      Name
      Size
      Bytes
      Class
      X
      96x96
      73728
      double array
      map
      255x3
      6120
      double array
      swa
      96x96x3
      221184
      double array
      swh
      96x96x3
      221184
      double array
      swv
      96x96x3
      221184
      double array
      swd
      96x96x3
      221184
      double array
       
      

  1. Display the coefficients of approximations and details.

  1. To display the coefficients of approximations and details, type

    • colormap(map)
      kp = 0;
      for i = 1:3
          subplot(3,4,kp+1), image(wcodemat(swa(:,:,i),192));
          title(['Approx. cfs level ',num2str(i)])
          subplot(3,4,kp+2), image(wcodemat(swh(:,:,i),192));
          title(['Horiz. Det. cfs level ',num2str(i)])
          subplot(3,4,kp+3), image(wcodemat(swv(:,:,i),192));
          title(['Vert. Det. cfs level ',num2str(i)])
          subplot(3,4,kp+4), image(wcodemat(swd(:,:,i),192));
          title(['Diag. Det. cfs level ',num2str(i)])
          kp = kp + 4;
      end
      

  1. Reconstruct approximation at Level 3 and details from coefficients.

  1. To reconstruct the approximation at level 3, type

    • mzero = zeros(size(swd));
      A = mzero;
      A(:,:,3) = iswt2(swa,mzero,mzero,mzero,'db1');
      

    To reconstruct the details at levels 1, 2 and 3, type

    • H = mzero; V = mzero;
      D = mzero;
      for i = 1:3
          swcfs = mzero; swcfs(:,:,i) = swh(:,:,i);
          H(:,:,i) = iswt2(mzero,swcfs,mzero,mzero,'db1');
          swcfs = mzero; swcfs(:,:,i) = swv(:,:,i);
          V(:,:,i) = iswt2(mzero,mzero,swcfs,mzero,'db1');
          swcfs = mzero; swcfs(:,:,i) = swd(:,:,i);
          D(:,:,i) = iswt2(mzero,mzero,mzero,swcfs,'db1');
      end
      

  1. Reconstruct and display approximations at Levels 1, 2 from approximation at Level 3 and details at Levels 1, 2, and 3.

  1. To reconstruct the approximations at levels 2 and 3, type

    • A(:,:,2) = A(:,:,3) + H(:,:,3) + V(:,:,3) + D(:,:,3);
      A(:,:,1) = A(:,:,2) + H(:,:,2) + V(:,:,2) + D(:,:,2);
      

    To display the approximations and details at levels 1, 2, and 3, type

    • colormap(map)
      kp = 0;
      for i = 1:3
          subplot(3,4,kp+1), image(wcodemat(A(:,:,i),192));
          title(['Approx. level ',num2str(i)])
          subplot(3,4,kp+2), image(wcodemat(H(:,:,i),192));
          title(['Horiz. Det. level ',num2str(i)])
          subplot(3,4,kp+3), image(wcodemat(V(:,:,i),192));
          title(['Vert. Det. level ',num2str(i)])
          subplot(3,4,kp+4), image(wcodemat(D(:,:,i),192));
          title(['Diag. Det. level ',num2str(i)])
          kp = kp + 4;
      end
      

  1. Remove noise by thresholding.

  1. To denoise an image, use the threshold value we find using the GUI tool (see the next section), use the wthresh command to perform the actual thresholding of the detail coefficients, and then use the iswt2 command to obtain the denoised image.

    • thr = 44.5;
      sorh = 's';
      dswh = wthresh(swh,sorh,thr);
      dswv = wthresh(swv,sorh,thr);
      dswd = wthresh(swd,sorh,thr);
      clean = iswt2(swa,dswh,dswv,dswd,'db1');
      

    To display both the original and denoised images, type

    • colormap(map)
      subplot(1,2,1), image(wcodemat(X,192));
      title('Original image')
      subplot(1,2,2), image(wcodemat(clean,192));
      title('denoised image')
      

    A second syntax can be used for the swt2 and iswt2 functions, giving the same results:

    • lev = 4;
      swc = swt2(X,lev,'db1');
      swcden = swc;
      swcden(:,:,1:end-1) = wthresh(swcden(:,:,1:end-1),sorh,thr);
      clean = iswt2(swcden,'db1');
      

    You obtain the same plot by using the plot commands in step 9 above.

Two-Dimensional Analysis for De-Noising Using the
Graphical Interface

In this section, we explore a strategy for de-noising images based on the two-dimensional stationary wavelet analysis using the graphical interface tools. The basic idea is to average many slightly different discrete wavelet analyses.

  1. Start the Stationary Wavelet Transform De-Noising 2-D Tool.

  1. From the MATLAB prompt, type

    • wavemenu
      

    The Wavelet Toolbox Main Menu appears:

    Click the SWT De-noising 2-D menu item.

    The discrete stationary wavelet transform de-noising tool for images appears.

  1. Load data.

  1. From the File menu, choose the Load Image option.

    When the Load Image dialog box appears, select the MAT-file noiswom.mat, which should reside in the MATLAB folder toolbox/wavelet/wavedemo. Click the OK button. The noisy woman image is loaded into the SWT De-noising 2-D tool.

  1. Perform a Stationary Wavelet Decomposition.

  1. Select the haar wavelet from the Wavelet menu, select 4 from the Level menu, and then click the Decompose Image button.

    The tool displays the histograms of the stationary wavelet detail coefficients of the image on the left of the window. These histograms are organized as follows:

    • From the bottom for level 1 to the top for level 4
    • On the left horizontal coefficients, in the middle diagonal coefficients, and on the right vertical coefficients

  1. denoise the image using the Stationary Wavelet Transform.

  1. While a number of options are available for fine-tuning the de-noising algorithm, we'll accept the defaults of fixed form soft thresholding and unscaled white noise. The sliders located to the right of the window control the level dependent thresholds indicated by yellow dotted lines running vertically through the histograms of the coefficients on the left of the window. Click the denoise button.

    The result seems to be oversmoothed and the selected thresholds too aggressive. Nevertheless, the histogram of the residuals is quite good since it is close to a Gaussian distribution, which is the noise introduced to produce the analyzed image noiswom.mat from a piece of the original image woman.mat.

  1. Selecting a thresholding method.

  1. From the Select thresholding method menu, choose the Penalize low item. The associated default for the thresholding mode is automatically set to hard; accept it. Use the Sparsity slider to adjust the threshold value close to 44.5, and then click the denoise button.

    The result is quite satisfactory, although it is possible to improve it slightly.

    Select the sym6 wavelet and click the Decompose Image button. Use the Sparsity slider to adjust the threshold value close to 40.44, and then click the denoise button.

Importing and Exporting Information from the
Graphical Interface

The tool lets you save the denoised image to disk. The toolbox creates a MAT-file in the current folder with a name you choose.

To save the denoised image from the present de-noising process, use the menu File > Save denoised Image. A dialog box appears that lets you specify a folder and filename for storing the image. Type the name dnoiswom. After saving the image data to the file dnoiswom.mat, load the variables into your workspace:

The denoised image is X and map is the colormap. In addition, the parameters of the de-noising process are available. The wavelet name is contained in wname, and the level dependent thresholds are encoded in valTHR. The variable valTHR has four columns (the level of the decomposition) and three rows (one for each detail orientation).


 Provide feedback about this page 

Previous page One-Dimensional Discrete Stationary Wavelet Analysis One-Dimensional Wavelet Regression Estimation Next page

Recommended Products

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.

 © 1984-2010- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS