From cc7a13ea576858b6dd746c437de0dcb410915fb6 Mon Sep 17 00:00:00 2001 From: Roman Donchenko Date: Tue, 8 Oct 2013 18:13:56 +0400 Subject: [PATCH] Named GraphCutSeamFinderBase to allow its usage in makePtr. Sequel to bcb6f038. --- .../stitching/include/opencv2/stitching/detail/seam_finders.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp b/modules/stitching/include/opencv2/stitching/detail/seam_finders.hpp index b1eb18b910..24b7db6b5e 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 }; };