refactored opencv_stitching

This commit is contained in:
Alexey Spizhevoy
2011-05-16 05:11:09 +00:00
parent f80c93aa82
commit 79ed4e4c92
10 changed files with 78 additions and 77 deletions

View File

@@ -58,9 +58,9 @@ float normL2(const cv::Point3f& a, const cv::Point3f& b)
static inline
double normL2sq(const cv::Mat &m)
double normL2sq(const cv::Mat &r)
{
return m.dot(m);
return r.dot(r);
}