Can we stitch images without mixing

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?

+4
source share
1 answer

You can stitch two images without mixing. But you only do this if you do not care about the exit. If the conclusion matters to you, then mixing should be done.

+3
source

Source: https://habr.com/ru/post/1685922/


All Articles