spiht algorithm
1 回表示 (過去 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);
1 件のコメント
参考
カテゴリ
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!