필터 지우기
필터 지우기

image compressing with DCT

조회 수: 4 (최근 30일)
adi
adi 2011년 11월 22일
what is the coding Elimination of DCT coefficients for jpeg image compression ?? i using matlab R2008a
help me..
  댓글 수: 1
Walter Roberson
Walter Roberson 2011년 11월 22일
I do not understand this question as phrased, unless it is a duplicate of your other question http://www.mathworks.com/matlabcentral/answers/21891-jpeg-image-compressing-with-dct

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

답변 (1개)

Hamrit
Hamrit 2012년 5월 13일
dvalue=imread('yourimage');
dvalue = double(dvalue)/255;
dvalue = rgb2gray(dvalue);
imshow(dvalue)
img_dct=dct2(dvalue);
img_pow=(img_dct).^2;
img_pow=img_pow(:);
[B,index]=sort(img_pow);%no zig-zag
B=flipud(B);
index=flipud(index);
compressed_dct=zeros(size(dvalue));
coeff = 20000;% maybe change the value
for k=1:coeff
compressed_dct(index(k))=img_dct(index(k));
end
im=idct2(compressed_dct);
imwrite(im, 'Hassan.jpg')
not for color Jpeg

카테고리

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