Table of Contents

Method EstimateTransform

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

EstimateTransform(InputArray)

Tries to match the given images and to estimate rotations of each camera. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(InputArray, OutputArray).

public Stitcher.Status EstimateTransform(InputArray images)

Parameters

images InputArray

Input images.

Returns

Stitcher.Status

Status code.

EstimateTransform(InputArray, Rect[][])

Tries to match the given images and to estimate rotations of each camera. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(InputArray, Rect[][], OutputArray).

public Stitcher.Status EstimateTransform(InputArray images, Rect[][] rois)

Parameters

images InputArray

Input images.

rois Rect[][]

Masks for each input image specifying where to look for keypoints (optional).

Returns

Stitcher.Status

Status code.

EstimateTransform(IEnumerable<Mat>)

Tries to match the given images and to estimate rotations of each camera. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(IEnumerable<Mat>, OutputArray).

public Stitcher.Status EstimateTransform(IEnumerable<Mat> images)

Parameters

images IEnumerable<Mat>

Input images.

Returns

Stitcher.Status

Status code.

EstimateTransform(IEnumerable<Mat>, Rect[][])

Tries to match the given images and to estimate rotations of each camera. Note: Use this method only if you're aware of the stitching pipeline, otherwise use Stitch(IEnumerable<Mat>, Rect[][], OutputArray).

public Stitcher.Status EstimateTransform(IEnumerable<Mat> images, Rect[][] rois)

Parameters

images IEnumerable<Mat>

Input images.

rois Rect[][]

Masks for each input image specifying where to look for keypoints (optional).

Returns

Stitcher.Status

Status code.