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
imagesInputArrayInput images.
Returns
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
imagesInputArrayInput images.
roisRect[][]Masks for each input image specifying where to look for keypoints (optional).
Returns
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
imagesIEnumerable<Mat>Input images.
Returns
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
imagesIEnumerable<Mat>Input images.
roisRect[][]Masks for each input image specifying where to look for keypoints (optional).