nothinglo / NISwGSP

C++ implementation of the ECCV 2016 paper, Natural Image Stitching with the Global Similarity Prior.
332 stars 124 forks source link

svd matrix assignment bug #26

Open young1024 opened 5 years ago

young1024 commented 5 years ago

in line 201:R.at(j / 3, j % 3) = V(j, V.rows() - 1); should be R.at(j / 3, j % 3) = V(j, V.cols() - 1);