diff options
Diffstat (limited to 'meowpp.test/src/autostitch_RansacCheck.cpp')
-rw-r--r-- | meowpp.test/src/autostitch_RansacCheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meowpp.test/src/autostitch_RansacCheck.cpp b/meowpp.test/src/autostitch_RansacCheck.cpp index e728958..1516d1a 100644 --- a/meowpp.test/src/autostitch_RansacCheck.cpp +++ b/meowpp.test/src/autostitch_RansacCheck.cpp @@ -77,7 +77,7 @@ Vector<double> MyRansacCheck::vCalc(std::vector<FeaturePointIndexPair> const& __ for (size_t j = i + 1; j < 8u; j++) { sum += x(j) * m(i, j); } - x.entry(i, (m(i, 8) - sum) / m(i, i)); + x.scalar(i, (m(i, 8) - sum) / m(i, i)); } return x; } |