From dbd65a3b01bbeca7405bf4c5c3971c85f5fa6d89 Mon Sep 17 00:00:00 2001 From: "deniz.aksayli" Date: Tue, 27 Apr 2021 11:10:41 +0300 Subject: [PATCH] fix seam finder --- samples/python/stitching_detailed.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/samples/python/stitching_detailed.py b/samples/python/stitching_detailed.py index 7253932..a7e3161 100644 --- a/samples/python/stitching_detailed.py +++ b/samples/python/stitching_detailed.py @@ -49,8 +49,6 @@ except AttributeError: print("AKAZE not available") SEAM_FIND_CHOICES = OrderedDict() -SEAM_FIND_CHOICES['gc_color'] = cv.detail_GraphCutSeamFinder('COST_COLOR') -SEAM_FIND_CHOICES['gc_colorgrad'] = cv.detail_GraphCutSeamFinder('COST_COLOR_GRAD') SEAM_FIND_CHOICES['dp_color'] = cv.detail_DpSeamFinder('COLOR') SEAM_FIND_CHOICES['dp_colorgrad'] = cv.detail_DpSeamFinder('COLOR_GRAD') SEAM_FIND_CHOICES['voronoi'] = cv.detail.SeamFinder_createDefault(cv.detail.SeamFinder_VORONOI_SEAM) @@ -432,7 +430,7 @@ def main(): compensator.feed(corners=corners, images=images_warped, masks=masks_warped) seam_finder = SEAM_FIND_CHOICES[args.seam] - seam_finder.find(images_warped_f, corners, masks_warped) + masks_warped = seam_finder.find(images_warped_f, corners, masks_warped) compose_scale = 1 corners = [] sizes = [] -- 2.7.4