From 79cc05d06236a523327819ba60fb2eb84f56be72 Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Wed, 25 Jan 2012 07:31:56 +0000 Subject: [PATCH] minor fix --- modules/stitching/include/opencv2/stitching/detail/util.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/stitching/include/opencv2/stitching/detail/util.hpp b/modules/stitching/include/opencv2/stitching/detail/util.hpp index a2e5a02..1887f6b 100644 --- a/modules/stitching/include/opencv2/stitching/detail/util.hpp +++ b/modules/stitching/include/opencv2/stitching/detail/util.hpp @@ -140,15 +140,15 @@ private: ////////////////////////////////////////////////////////////////////////////// // Auxiliary functions -bool CV_EXPORTS overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi); -Rect CV_EXPORTS resultRoi(const std::vector &corners, const std::vector &images); -Rect CV_EXPORTS resultRoi(const std::vector &corners, const std::vector &sizes); -Point CV_EXPORTS resultTl(const std::vector &corners); +CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi); +CV_EXPORTS Rect resultRoi(const std::vector &corners, const std::vector &images); +CV_EXPORTS Rect resultRoi(const std::vector &corners, const std::vector &sizes); +CV_EXPORTS Point resultTl(const std::vector &corners); // Returns random 'count' element subset of the {0,1,...,size-1} set -void CV_EXPORTS selectRandomSubset(int count, int size, std::vector &subset); +CV_EXPORTS void selectRandomSubset(int count, int size, std::vector &subset); -int& CV_EXPORTS stitchingLogLevel(); +CV_EXPORTS int& stitchingLogLevel(); } // namespace detail } // namespace cv -- 2.7.4