필터 지우기
필터 지우기

reconstructing image that has been decompposed using svd

조회 수: 4 (최근 30일)
buddy
buddy 2011년 3월 4일
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