Method ComposePanorama
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
ComposePanorama(OutputArray)
Tries to compose the images stored internally from the other function calls into the final pano, under the assumption that the image transformations were estimated before. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(InputArray, OutputArray).
public Stitcher.Status ComposePanorama(OutputArray pano)
Parameters
panoOutputArrayFinal pano.
Returns
ComposePanorama(InputArray, OutputArray)
Tries to compose the given images into the final pano, under the assumption that the image transformations were estimated before. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(InputArray, OutputArray).
public Stitcher.Status ComposePanorama(InputArray images, OutputArray pano)
Parameters
imagesInputArrayInput images.
panoOutputArrayFinal pano.
Returns
ComposePanorama(IEnumerable<Mat>, OutputArray)
Tries to compose the given images into the final pano, under the assumption that the image transformations were estimated before. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(IEnumerable<Mat>, OutputArray).
public Stitcher.Status ComposePanorama(IEnumerable<Mat> images, OutputArray pano)
Parameters
imagesIEnumerable<Mat>Input images.
panoOutputArrayFinal pano.