小波變換進行圖像壓縮matlab源代碼/源程序
大小:34 人氣: 2010-02-08 需要積分:0
%MEX links(MATLAB loads and runs a different entry point symbol for C or Fortran MEX-files)
clear all;
% CLOSE ALL? closes all the open figure windows.
close all;
%read the image
input_image1=imread('rice.tif');
%display input image
%add noise
input_image=imnoise(input_image1,'speckle',.01);
figure;
imshow(input_image);
%give the number of decomposition level which must be integer and should not exceed 3
n=input('enter the decomposition level');
非常好我支持^.^
(20) 100%
不好我反對
(0) 0%