From: alexey.spizhevoy Date: Mon, 6 Aug 2012 07:46:40 +0000 (+0400) Subject: Minor changes X-Git-Tag: accepted/2.0/20130307.220821~364^2~272^2~20^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85d1c463b90c824a85c6d69a40a328a13e94f27d;p=profile%2Fivi%2Fopencv.git Minor changes --- 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);