Welcome![Sign In][Sign Up]
Location:
Search - wavelet decomposition matlab

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[matlabEZW源码(Matlab实现)

Description:

详细编写了EZW(嵌入式零树小波图像压缩技术),它主要由小波变换、量化和熵编码(Huffman编码)三个模块。

程序各个模块功能分明,依次为,Wavelet Decomposition,EZW Encoding(包含Huffman编码),EZW Decoding(包含Huffman解码),Inverse Wavelet Decomposition,Performance。


Platform: | Size: 132281 | Author: thebestxie | Hits:

[Wavelet小波分解与重构的几个matlab程序

Description: 用matlab实现小波分解与重构的几个程序的源代码。-using Matlab achieve wavelet decomposition and reconstruction of several programs at the source code.
Platform: | Size: 2048 | Author: yy | Hits:

[Wavelet小波图像分解与合成

Description: 3次非标准小波分解和重构, 使用两种小波:Haar小波和db9小波 设计3级小波分解和重构图像的程序 用你自己的照片作对象,显示其中任一种小波图像分解和重构过程 使用Haar小波时,计算阈值分别为0,5,10和20的情况下,用PNG格式存储重构的图像,并将计算结果填入“图像测试表” 使用db9小波时,计算阈值分别为0,5,10和20的情况下,用PNG格式存储重构的图像,并将计算结果填入“图像测试表” -3rd standard wavelet decomposition and reconstruction, the use of two wavelet : Haar wavelet and wavelet design Terminal 3 wavelet decomposition and reconstruction process images using your own pictures for targets, which shows the image of a wavelet decomposition and reconstruction process using wavelet Haar, the threshold values were calculated for 0, 5,10 and 20 of the cases, the storage format used PNG Image Reconstruction and results Enter "Image table test" Wavelet use Terminal, the threshold values were calculated for 0,5,10 and 20 of the cases, the storage format used PNG Image Reconstruction and calculation results Enter "Image test Table"
Platform: | Size: 5120 | Author: yule | Hits:

[Waveletlwt

Description: 提升小波变换程序, %LWT Lifting wavelet decomposition 1-D. % LWT performs a 1-D lifting wavelet decomposition % with respect to a particular lifted wavelet that you specify.-lifting wavelet transform procedures% Local Walsh Transform Lifting wavelet decomposition 1-D. % Local Walsh Transform performs a 1-D lifting wavelet decomposition% with respect to a particular lifted wavelet that you specify.
Platform: | Size: 1024 | Author: 李宁 | Hits:

[Graph programwavelet transform program

Description: 内容:基于MATLAB的小波变换程序 具体功能:实现四级信号的小波分解和重构-Content: wavelet transform based on Matlab: four level signial wavelet decomposition and reconstruction are implemented.
Platform: | Size: 2048 | Author: 肖水军 | Hits:

[matlabWaveletCDF97

Description: Cohen-Daubechies-Fauraue 9-7 Wavelet Transforms . CDF小波分解matlab源代码-Cohen-Daubechies- Fauraue 9-7 Wavelet Tr ansforms. CDF wavelet decomposition Matlab source code
Platform: | Size: 1024 | Author: 王波 | Hits:

[matlabwaveletthresholddenoise

Description: 小波变换用于语音信号阈值去噪的一个matlab程序,主要功能是阈值搜索,小波分解重构-wavelet transform for the voice signal denoising threshold of a Matlab procedures, the main function is to search threshold, wavelet decomposition Reconstruction
Platform: | Size: 1024 | Author: 张旭颜 | Hits:

[Special Effectswaveletxiaoyu50052

Description: 自己编的使用小波实现的纹理图像分割,具体过程是先对图像进行三级小波分解,每级都对系数聚类并指导下一级分类,分割效果较好~ -own addendum to the use of wavelet achieve the texture image segmentation, specific process is the first image wavelet decomposition three each of the levels are right and clustering coefficients under the guidance of a classification, segmentation better ~
Platform: | Size: 64512 | Author: 夏玉 | Hits:

[Waveletdb-wavelet

Description: Matlab环境下利用Daubechies小波族中的db10小波对散斑退化图像进行了压缩数值仿真研究。研究表明:阈值以及分解层次的选取影响着图像压缩的质量。-Matlab environment using Daubechies wavelet tribal db10 wavelet the withdrawal of speckle image compression for the numerical simulation. Research shows : the threshold level of decomposition is influenced by the quality of image compression.
Platform: | Size: 4096 | Author: | Hits:

[File Format12456897514254265825

Description: 文章利用MATLAB语言及其小波工具箱,采用小波变换算法,开发数字水印嵌入系统,通过对原始静态图像和二值图像水印进行小波多分辨率分解,组合对应方向上的小波细节子图数据,从而实现了在原始静态图像上嵌入二值图像水印。有部分代码-article using MATLAB language and its toolbox, wavelet transform algorithm, development of digital watermark embedded systems, right through static images and the original binary image watermarking multiresolution wavelet decomposition, Portfolio corresponding direction on the details of wavelet-map data, thus realizing the original static image embedded binary image watermarking. Some code
Platform: | Size: 52224 | Author: ming-ming | Hits:

[Special Effectsfenjiechungou

Description: 二进小波多级分解,基于小波的图像多尺度分解和便于那检测,成功完成小波对图像的多尺度分解及重构。-into two multi-level wavelet decomposition of the image based on wavelet multi-scale decomposition and then facilitate detection, the successful completion of image wavelet multiscale decomposition and reconstruction.
Platform: | Size: 21504 | Author: 无梦 | Hits:

[Software Engineeringxiaobo

Description: 小波分解融合在图像去云处理中的应用-Wavelet decomposition to cloud integration in image processing applications
Platform: | Size: 399360 | Author: zht | Hits:

[Othereeg

Description: 脑电信号EEG的信号波形分析,采用小波分解之后plot出波形-EEG signal EEG waveform analysis using wavelet decomposition of the waveform after the plot
Platform: | Size: 18432 | Author: larry | Hits:

[Waveletmatlab

Description: 小波变换的一级分解过程是,原始信号分别进行低通、高通滤波,再分别进行二元下抽样,就得到低频、高频(也称为平均、细节)两部分系数;而多级分解则是对上一级分解得到的低频系数再进行小波分解,是一个递归过程。-Wavelet decomposition level is, the original signal were low-pass, high pass filter, and then carried out under the binary sample, we obtained low-frequency, high-frequency (also known as the average, details) coefficient of two parts and multi-level decomposition it is the decomposition level to be low-frequency coefficients further wavelet decomposition is a recursive process.
Platform: | Size: 7420928 | Author: 王正 | Hits:

[Special Effectsprep2D

Description: 图像处理中的对输入信号的多小波分解的Matlab实验程序-Image processing of the input signal of multi-wavelet decomposition of the Matlab experiment procedures
Platform: | Size: 1024 | Author: songsong | Hits:

[Waveletwave2gray

Description: WAVE2GRAY Display wavelet decomposition coefficients. 比pdun原有的更加详细。有详细帮助文档。-WAVE2GRAY Display wavelet decomposition coefficients. Than the original pdun more detailed. Have detailed help documentation.
Platform: | Size: 2048 | Author: Lvlin | Hits:

[Wavelethaar

Description: haar小波分解源代码 -haar wavelet decomposition haar wavelet decomposition source code source code
Platform: | Size: 2048 | Author: 王强 | Hits:

[Applicationswavelet

Description: 脑电信号的小波分解 本程序分解为四层,并加了一个Matlab编程课件 希望对大家有所帮助-EEG wavelet decomposition of the process is broken down into four, and adding a Matlab programming courseware would like to help everyone
Platform: | Size: 1561600 | Author: 王晶 | Hits:

[Waveletbinary-wavelet-decomposition

Description: 该程序是关于一维二进小波的matlab实现,改程序中还包含一个上采样程序-One-dimensional binary wavelet decomposition
Platform: | Size: 39936 | Author: sinasina | Hits:
« 12 3 4 5 6 7 8 9 10 ... 24 »

CodeBus www.codebus.net