Deleted all trailing whitespace.

This commit is contained in:
Roman Donchenko
2013-08-21 16:44:09 +04:00
parent 0d8cb2e319
commit f55740da70
193 changed files with 1685 additions and 1685 deletions

View File

@@ -9,7 +9,7 @@ detail::CameraParams
Describes camera parameters.
.. note:: Translation is assumed to be zero during the whole stitching pipeline.
.. note:: Translation is assumed to be zero during the whole stitching pipeline.
::

View File

@@ -57,9 +57,9 @@ High level image stitcher. It's possible to use this class without being aware o
const cv::Mat& matchingMask() const { return matching_mask_; }
void setMatchingMask(const cv::Mat &mask)
{
{
CV_Assert(mask.type() == CV_8U && mask.cols == mask.rows);
matching_mask_ = mask.clone();
matching_mask_ = mask.clone();
}
Ptr<detail::BundleAdjusterBase> bundleAdjuster() { return bundle_adjuster_; }
@@ -84,7 +84,7 @@ High level image stitcher. It's possible to use this class without being aware o
const Ptr<detail::Blender> blender() const { return blender_; }
void setBlender(Ptr<detail::Blender> blender) { blender_ = blender; }
private:
private:
/* hidden */
};
@@ -117,7 +117,7 @@ These functions try to match the given images and to estimate rotations of each
:param images: Input images.
:param rois: Region of interest rectangles.
:return: Status code.
Stitcher::composePanorama
@@ -132,7 +132,7 @@ These functions try to compose the given images (or images stored internally fro
.. ocv:function:: Status Stitcher::composePanorama(InputArray images, OutputArray pano)
:param images: Input images.
:param pano: Final pano.
:return: Status code.
@@ -147,7 +147,7 @@ These functions try to stitch the given images.
.. ocv:function:: Status Stitcher::stitch(InputArray images, const std::vector<std::vector<Rect> > &rois, OutputArray pano)
:param images: Input images.
:param rois: Region of interest rectangles.
:param pano: Final pano.

View File

@@ -130,6 +130,6 @@ Minimum graph cut-based seam estimator. See details in [V03]_. ::
/* hidden */
};
.. seealso::
.. seealso::
:ocv:class:`detail::GraphCutSeamFinderBase`,
:ocv:class:`detail::SeamFinder`

View File

@@ -4,7 +4,7 @@ stitching. Images stitching
.. toctree::
:maxdepth: 2
introduction
high_level
camera