spiht algorithm
조회 수: 2 (최근 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!