From: Roman Donchenko Date: Tue, 8 Oct 2013 14:13:56 +0000 (+0400) Subject: Named GraphCutSeamFinderBase to allow its usage in makePtr. X-Git-Tag: submit/tizen_ivi/20141117.190038~2^2~883^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc7a13ea576858b6dd746c437de0dcb410915fb6;p=profile%2Fivi%2Fopencv.git Named GraphCutSeamFinderBase to allow its usage in makePtr. Sequel to bcb6f038. --- diff --git a/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp b/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp index b1eb18b..24b7db6 100644 --- a/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp +++ b/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp @@ -205,7 +205,7 @@ private: class CV_EXPORTS GraphCutSeamFinderBase { public: - enum { COST_COLOR, COST_COLOR_GRAD }; + enum CostType { COST_COLOR, COST_COLOR_GRAD }; };