I'm trying to create a panorama by stitching images. To stitch two frames, the code takes 1 second, and most of the time it takes to warp the image. Can I stitch images without mixing?
I am currently using multiband mixing
MultiBandBlender* mb = dynamic_cast<MultiBandBlender*>(blender.get());
mb->setNumBands(static_cast<int>(ceil(log(blend_width)/log(2.)) - 1.));
Is it possible to delete these mix images and stitches?
source
share