Table of Contents

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

pano OutputArray

Final pano.

Returns

Stitcher.Status

Status code.

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

images InputArray

Input images.

pano OutputArray

Final pano.

Returns

Stitcher.Status

Status code.

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

images IEnumerable<Mat>

Input images.

pano OutputArray

Final pano.

Returns

Stitcher.Status

Status code.