zoukankan      html  css  js  c++  java
  • 多尺度二维离散小波重构waverec2

    clc,clear all,close all;
    load woman;
    [c,s]=wavedec2(X,2,'haar');%进行2尺度二维离散小波分解。分解小波函数haar
    %多尺度二维离散小波重构(逆变换)
    Y=waverec2(c,s,'haar');
    figure;
    subplot(1,2,1),imshow(X,map),title('原始图像');
    subplot(1,2,2),imshow(Y,map),title('重构图像');
    

      

    a1=wrcoef2('a',c,s,'haar',1);%尺度1低频重构
    a2=wrcoef2('a',c,s,'haar',2);
    figure;
    subplot(1,2,1),imshow(uint8(a1)),title('尺度1低频重构');
    subplot(1,2,2),imshow(uint8(a2)),title('尺度2低频重构');
    h1=wrcoef2('h',c,s,'haar',1);
    v1=wrcoef2('v',c,s,'haar',1);
    d1=wrcoef2('d',c,s,'haar',1);
    h2=wrcoef2('h',c,s,'haar',2);
    v2=wrcoef2('v',c,s,'haar',2);
    d2=wrcoef2('d',c,s,'haar',2);
    figure;
    subplot(1,3,1),imshow(uint8(h1)),title('尺度1水平高频重构');
    subplot(1,3,2),imshow(uint8(v1)),title('尺度1竖直高频重构');
    subplot(1,3,3),imshow(uint8(d1)),title('尺度1对角高频重构');
    figure;
    subplot(1,3,1),imshow(uint8(h2)),title('尺度2水平高频重构');
    subplot(1,3,2),imshow(uint8(v2)),title('尺度2竖直高频重构');
    subplot(1,3,3),imshow(uint8(d2)),title('尺度2对角高频重构');
    

      

  • 相关阅读:
    [转]MyBatis传入多个参数的问题
    【转】赶集网mysql开发36军规
    C#套接字和windowsAPI套接字
    java中的注解
    java中的枚举类型
    过去的汇编代码
    近日错误集锦
    java swing模仿随机频谱
    java泛型中的对象
    XML-RPC远程方法调用
  • 原文地址:https://www.cnblogs.com/xixixing/p/5827680.html
Copyright © 2011-2022 走看看