File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
modules/stitching/include/opencv2 Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -299,8 +299,13 @@ class CV_EXPORTS_W Stitcher
299299 */
300300 CV_WRAP Status stitch (InputArrayOfArrays images, InputArrayOfArrays masks, OutputArray pano);
301301
302- std::vector<int > component () const { return indices_; }
303- std::vector<detail::CameraParams> cameras () const { return cameras_; }
302+ /* * @brief Returns indeces of input images used in panorama stitching
303+ */
304+ CV_WRAP std::vector<int > component () const { return indices_; }
305+
306+ /* * Returns estimated camera parameters for all stitched images
307+ */
308+ CV_WRAP std::vector<cv::detail::CameraParams> cameras () const { return cameras_; }
304309 CV_WRAP double workScale () const { return work_scale_; }
305310
306311 /* * @brief Return the mask of the panorama.
You can’t perform that action at this time.
0 commit comments