How can I extract only the compressed image from that code? (not the reconstructed one)

I followed the link and i got the reconstructed one but i also need to extract the compressed one : https://www.mathworks.com/help/images/discrete-cosine-transform.html

 Accepted Answer

hi, the reconstructed one is you want the compressed one.
or use B to recover origin image.
I = imread('cameraman.tif');
I = im2double(I);
T = dctmtx(8);
dct = @(block_struct) T * block_struct.data * T';
B = blockproc(I,[8 8],dct);
invdct = @(block_struct) T' * block_struct.data * T;
I_recover = blockproc(B,[8 8],invdct);
figure;
err = immse(I,I_recover)
err = 1.1837e-30
imshowpair(I,I_recover,'montage')
you see, I and I_recover are the same

1 Comment

ok thank you but the image has the same size so we got the image after decompression my goal is to get th image before decompression

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Products

Asked:

on 12 Dec 2022

Commented:

on 12 Dec 2022

Community Treasure Hunt

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

Start Hunting!