spiht algorithm
Mostrar comentarios más antiguos
looking for spiht algorithm for image compression
Respuestas (3)
Wayne King
el 19 de Mayo de 2012
0 votos
This algorithm is available for both gray scale and true color images in the Wavelet Toolbox as an option for wcompress
2 comentarios
slama najla
el 19 de Mayo de 2012
thank mr Wayne King
VILMA1010
el 23 de Jul. de 2014
Hello Wayne King
Can you answer me this question?
Exist a way to compress a grayscale image with wcompress mode SPIHT LOSSLESS?
G PRAKASH
el 5 de Mzo. de 2014
Editada: Walter Roberson
el 2 de Ag. de 2016
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 comentario
Tanvi
el 19 de Nov. de 2014
hello sir!! i am getting an error at a line for uncompression.
patnana Adinarayana
el 1 de Mzo. de 2017
if true
% code
end
Categorías
Más información sobre Image Transforms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!