Ask Your Question
0

How to do SVD back substitution

asked 2014-09-22 02:46:45 -0600

Mahavir gravatar image

I am applying SVD on image using opencv 2.4.9 command SVDecomp. at the time of back substitution it asks rhs array.What is that array and how to get it?

commands:

 1. cv::SVDecomp(im_enc1,w,u,vt);

where w,u,vt are SVD components and im_enc1 is inputimage.

 2. cv::SVBackSubst(w,u,vt,rhs,im_enc2);

where w,u,vt are SVD components and im_enc2 is output image.

edit retag flag offensive close merge delete

1 answer

Sort by » oldest newest most voted
0

answered 2014-09-22 04:50:18 -0600

thdrksdfthmn gravatar image

updated 2014-09-22 04:52:40 -0600

If you go in the documentation, you'll find the answer:

rhs – right-hand side of a linear system (u*w*v')*dst = rhs to be solved, where A has been previously decomposed.

And please read the note.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2014-09-22 02:46:45 -0600

Seen: 565 times

Last updated: Sep 22 '14