답변 (3개)

Wayne King
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
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일

0 개 추천

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.

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

질문:

2012년 4월 17일

답변:

2017년 3월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by