Document some stitching methods and enable bindings for them.

pull/26516/head
Alexander Smorkalov 5 months ago
parent 7095cb6904
commit 905cc45f85
  1. 9
      modules/stitching/include/opencv2/stitching.hpp

@ -299,8 +299,13 @@ public:
*/
CV_WRAP Status stitch(InputArrayOfArrays images, InputArrayOfArrays masks, OutputArray pano);
std::vector<int> component() const { return indices_; }
std::vector<detail::CameraParams> cameras() const { return cameras_; }
/** @brief Returns indeces of input images used in panorama stitching
*/
CV_WRAP std::vector<int> component() const { return indices_; }
/** Returns estimated camera parameters for all stitched images
*/
CV_WRAP std::vector<cv::detail::CameraParams> cameras() const { return cameras_; }
CV_WRAP double workScale() const { return work_scale_; }
/** @brief Return the mask of the panorama.

Loading…
Cancel
Save