spiht algorithm
显示 更早的评论
回答(3 个)
Wayne King
2012-5-19
0 个投票
This algorithm is available for both gray scale and true color images in the Wavelet Toolbox as an option for wcompress
2 个评论
slama najla
2012-5-19
thank mr Wayne King
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);
1 个评论
Tanvi
2014-11-19
hello sir!! i am getting an error at a line for uncompression.
patnana Adinarayana
2017-3-1
if true
% code
end
类别
在 帮助中心 和 File Exchange 中查找有关 Image Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!