reconstructing image that has been decompposed using svd

4 次查看(过去 30 天)
i have decomposed my image using svd... and modified the singular values..now i have three vectors..U S and V..can u pls help me to reconstruct my image.is there any keywords that would perform the inverse work of svd??

采纳的回答

Matt Tearle
Matt Tearle 2011-3-4
What do you mean by "the inverse of SVD"? The SVD is a decomposition: A = U*S*V' so reconstructing A just requires performing the multiplication.
  1 个评论
buddy
buddy 2011-3-4
thank you... i just thought there wil be some predefined keyword.. thanks it works in this way..

请先登录,再进行评论。

更多回答(2 个)

Liz Hahn
Liz Hahn 2012-5-18
So A will be my image in principal component axis?

Liz Hahn
Liz Hahn 2012-5-18
If I set data as my input image %svd: [u,s,v] = svd(data) data_new1 = u*s*v'; %pca [coef,score] = pca(data); data_new2 = (score')*data;
Are data_new1 = data_new2?

类别

Help CenterFile Exchange 中查找有关 Eigenvalues 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by