1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #15053 from SciMad:fix-error-message

This commit is contained in:
Alexander Alekhin
2019-07-16 09:55:05 +00:00
+1 -1
View 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");
}