QR decomposition in OpenCV
Is there any function for QR decomposition for opencv?
bool qr = solve(src1, src2, dst, DECOMP_QR);
http://docs.opencv.org/modules/core/doc/operations_on_arrays.html?highlight=solve#bool%20solve%28InputArray%20src1,%20InputArray%20src2,%20OutputArray%20dst,%20int%20flags%29
Basically QR codes are a representation in binary images that should be read as bits. There is no included decomposition algorithm in OpenCV included, but if you know how the bits relate to the algorithm, I guess implementing in C++ wouldn't be that hard.
This link is an example of such a code, you can integrate this with your OpenCV project easily.
Asked: 2013-03-20 00:56:25 -0600
Seen: 4,799 times
Last updated: Mar 20 '13