Filter löschen
Filter löschen

reconstructing image that has been decompposed using svd

4 Ansichten (letzte 30 Tage)
buddy
buddy am 4 Mär. 2011
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??

Akzeptierte Antwort

Matt Tearle
Matt Tearle am 4 Mär. 2011
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 Kommentar
buddy
buddy am 4 Mär. 2011
thank you... i just thought there wil be some predefined keyword.. thanks it works in this way..

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Liz Hahn
Liz Hahn am 18 Mai 2012
So A will be my image in principal component axis?

Liz Hahn
Liz Hahn am 18 Mai 2012
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?

Kategorien

Mehr zu Eigenvalues finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by