spiht algorithm
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
looking for spiht algorithm for image compression
0 Kommentare
Antworten (3)
Wayne King
am 19 Mai 2012
This algorithm is available for both gray scale and true color images in the Wavelet Toolbox as an option for wcompress
2 Kommentare
VILMA1010
am 23 Jul. 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
am 5 Mär. 2014
Bearbeitet: Walter Roberson
am 2 Aug. 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 Kommentar
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!