spiht algorithm
2 次查看(过去 30 天)
显示 更早的评论
looking for spiht algorithm for image compression
0 个评论
回答(3 个)
Wayne King
2012-5-19
This algorithm is available for both gray scale and true color images in the Wavelet Toolbox as an option for wcompress
2 个评论
VILMA1010
2014-7-23
Hello Wayne King
Can you answer me this question?
Exist a way to compress a grayscale image with wcompress mode SPIHT LOSSLESS?
G PRAKASH
2014-3-5
编辑:Walter Roberson
2016-8-2
try this code
clc;
close all;
clear all;
I=imread('wpeppers.jpg');
figure('Name','inputimage'),imshow(I)
figure,
% compression
[cr,bpp] = wcompress1('c',I,'woodstatue.wtc', ...
'spiht','cc','klt','maxloop',11,'plotpar','plot');
%un compression
Xc = wcompress1('u','woodstatue.wtc');
delete('wpeppers.wtc')
figure,imshow(Xc);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Denoising and Compression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!