Fix error message on invalid seam finder parameter
authorMadhav <madhav.humagain@ekbana.com>
Tue, 16 Jul 2019 07:42:04 +0000 (13:27 +0545)
committerMadhav <madhav.humagain@ekbana.com>
Tue, 16 Jul 2019 07:42:04 +0000 (13:27 +0545)
modules/stitching/src/seam_finders.cpp

index 5cde4a0..779b44e 100644 (file)
@@ -55,7 +55,7 @@ Ptr<SeamFinder> SeamFinder::createDefault(int type)
         return makePtr<VoronoiSeamFinder>();
     if (type == DP_SEAM)
         return makePtr<DpSeamFinder>();
-    CV_Error(Error::StsBadArg, "unsupported exposure compensation method");
+    CV_Error(Error::StsBadArg, "unsupported seam finder method");
 }