mirror of
https://github.com/zebrajr/opencv.git
synced 2025-12-06 12:19:50 +01:00
Document some stitching methods and enable bindings for them.
This commit is contained in:
parent
7095cb6904
commit
905cc45f85
|
|
@ -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