spiht algorithm

6 次查看(过去 30 天)
Nagarjuna
Nagarjuna 2012-4-17
looking for spiht algorithm for image compression

回答(3 个)

Wayne King
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 个评论
slama najla
slama najla 2012-5-19
thank mr Wayne King
VILMA1010
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
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
Tanvi 2014-11-19
hello sir!! i am getting an error at a line for uncompression.

请先登录,再进行评论。


patnana Adinarayana
if true
% code
end

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by