spiht algorithm

조회 수: 4 (최근 30일)
Nagarjuna
Nagarjuna 2012년 4월 17일
답변: patnana Adinarayana 2017년 3월 1일
looking for spiht algorithm for image compression

답변 (3개)

Wayne King
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
slama najla
slama najla 2012년 5월 19일
thank mr Wayne King
VILMA1010
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
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
Tanvi 2014년 11월 19일
hello sir!! i am getting an error at a line for uncompression.

댓글을 달려면 로그인하십시오.


patnana Adinarayana
patnana Adinarayana 2017년 3월 1일
if true
% code
end

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by