From 385003e9fedb9909a07cd46855df4968423c64cb Mon Sep 17 00:00:00 2001 From: Jaakko Rantala Date: Fri, 2 Jun 2023 16:46:05 +0300 Subject: [PATCH] Update blenders.cpp Removed passing try_gpu parameter to FeatherBlender constructor because it only has sharpness parameter. --- modules/stitching/src/blenders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/stitching/src/blenders.cpp b/modules/stitching/src/blenders.cpp index 111a6e13ae..33a86ee360 100644 --- a/modules/stitching/src/blenders.cpp +++ b/modules/stitching/src/blenders.cpp @@ -70,7 +70,7 @@ Ptr Blender::createDefault(int type, bool try_gpu) if (type == NO) return makePtr(); if (type == FEATHER) - return makePtr(try_gpu); + return makePtr(); if (type == MULTI_BAND) return makePtr(try_gpu); CV_Error(Error::StsBadArg, "unsupported blending method");