spiht algorithm
이전 댓글 표시
looking for spiht algorithm for image compression
답변 (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!