d=50;
im = imread('H:\matlab\bildanalys\terminator.gif');
M2 = double(im);
[U S V] = svd(M2);
U2 = U(:,1:d);
S2 = S(1:d,1:d);
V2 = V(:,1:d);
compressed=U2*S2*V2';
imwrite(compressed,'H:\matlab\bildanalys\compressedterminator.gif','gif')
S2
the compressed image is 3times bigger...
I do svd on the image, throw away the smaller singular values(although they are quite big) then multiply together the matrices again to get the compressed image. the compressed image is black and white and bigger than the original. where do i fail?