From 85d1c463b90c824a85c6d69a40a328a13e94f27d Mon Sep 17 00:00:00 2001 From: "alexey.spizhevoy" Date: Mon, 6 Aug 2012 11:46:40 +0400 Subject: [PATCH] Minor changes --- modules/stitching/src/seam_finders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/stitching/src/seam_finders.cpp b/modules/stitching/src/seam_finders.cpp index cf733c9..ad5edee 100644 --- a/modules/stitching/src/seam_finders.cpp +++ b/modules/stitching/src/seam_finders.cpp @@ -659,7 +659,7 @@ namespace { template -inline float diffL2Square(const Mat &image1, int y1, int x1, const Mat &image2, int y2, int x2) +float diffL2Square(const Mat &image1, int y1, int x1, const Mat &image2, int y2, int x2) { const T *r1 = image1.ptr(y1); const T *r2 = image2.ptr(y2); -- 2.7.4