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对角高频重构');
    

      

  • 相关阅读:
    mysql用户密码修改
    Java List java.lang.UnsupportedOperationException
    python __dict__
    pytest.fixture
    Python __metaclass__ 解释
    Python __new__()方法,为对象分配内存 返回对象的引用
    git 常用操作
    boto3 dynamodb 一些简单操作
    conda, pip, virtualenv 区别
    list去重后不改变排序
  • 原文地址:https://www.cnblogs.com/xixixing/p/5827680.html
Copyright © 2011-2022 走看看