• 大小: 1.11KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-03-28
  • 语言: 其他
  • 标签: 其他  

资源简介


小波变换的一层、二层、三层分解,很好的资源

资源截图

代码片段和文件信息

clc;clear;close all
x = imread(‘D:\Program Files\MATLAB\R2010a\chengxu\1.jpg‘);
J=rgb2gray(x);
I=imcrop(J[41 0 255 255]);
%subplot(221);
subplot(221)imshow(I[]‘InitialMagnification‘100);
title(‘原始载体图像---K=2‘)





%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%图像的三级小波分解 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

[cs]=wavedec2(double(I)3‘db1‘);
ca3 = appcoef2(cs‘db1‘3);
ch3 = detcoef2(‘h‘cs3);
cv3 = detcoef2(‘v‘cs3);
cd3 = detcoef2(‘d‘cs3);
ch2 = detcoef2(‘h‘cs2);
cv2 = detcoef2(‘v‘cs2);
cd2 = detcoef2(‘d‘cs2);
ch1 = d

评论

共有 条评论