Commit bee510db authored by Madhav's avatar Madhav

Fix error message on invalid seam finder parameter

parent 6c6dd16a
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment