Search code examples
c++opencvblending

Can we stitch Images with out blending


I am trying to generate panorama by stitching images. To stitch two frames the code is taking 1 sec and most of the time its take for image warping. Is it possible to stitch images with out Blending?

Presently I am using Multi band blending

MultiBandBlender* mb = dynamic_cast<MultiBandBlender*>(blender.get());
mb->setNumBands(static_cast<int>(ceil(log(blend_width)/log(2.)) - 1.));

Can I remove this blending and stitch images?


Solution

  • You can stitch two images without blending. But you do this only if you don't care about output.If output matters to you then blending should be done.