Commit ed038ef9 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

Updated the stitching module docs

parent f5ed96f4
...@@ -86,9 +86,7 @@ Simple blender which mixes images at its borders. :: ...@@ -86,9 +86,7 @@ Simple blender which mixes images at its borders. ::
std::vector<Mat> &weight_maps); std::vector<Mat> &weight_maps);
private: private:
float sharpness_; /* hidden */
Mat weight_map_;
Mat dst_weight_map_;
}; };
.. seealso:: :ocv:class:`detail::Blender` .. seealso:: :ocv:class:`detail::Blender`
...@@ -111,11 +109,7 @@ Blender which uses multi-band blending algorithm (see [BA83]_). :: ...@@ -111,11 +109,7 @@ Blender which uses multi-band blending algorithm (see [BA83]_). ::
void blend(Mat &dst, Mat &dst_mask); void blend(Mat &dst, Mat &dst_mask);
private: private:
int actual_num_bands_, num_bands_; /* hidden */
std::vector<Mat> dst_pyr_laplace_;
std::vector<Mat> dst_band_weights_;
Rect dst_roi_final_;
bool can_use_gpu_;
}; };
.. seealso:: :ocv:class:`detail::Blender` .. seealso:: :ocv:class:`detail::Blender`
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment