MATLAB: According to SVD technique A=U*S*V’. But when I apply SVD to the image, I am not able to retrieve the original image. Is that because S matrix is not taking the all the eigen values? Eventhough, I had to get a partially correct image

image processingmatlab functionsvd

[u,s,v]=svd(a); ap=u*s; a=ap*v;

Best Answer

You've left off the transpose operator at the last step:
ap*v';
It's a very small character, but it's all-important!
Round-off errors may cause tiny differences between your original a and the restored a. If the image pixels in the original a were all integers, just do a round on the result and that should restore it exactly.