mirror of
https://github.com/opencv/opencv.git
synced 2025-01-19 06:53:50 +08:00
Merge pull request #26516 from asmorkalov:as/pano_component_wrap
Document some stitching methods and enable bindings for them.
This commit is contained in:
commit
a27d749471
@ -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…
Reference in New Issue
Block a user