I'm using open-cv==3.4.2 for stitching images in python.
import cv2
stitcher = cv2.createStitcher()
(status, stitched_panorama) = stitcher.stitch(image_array)
In the file blenders from opencv source code, I see there are implementations of both blending types Feather and Multi Band. But there is no option to select this from the stitch method. Is it possible to select the blending type while stitching the images? If yes, how? If not, can you please tell me which method is used by default?