Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
588658d1
Commit
588658d1
authored
Mar 17, 2014
by
Alexander Alekhin
Committed by
Andrey Pavlenko
Apr 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi: stitching: fix documentation
parent
026b13b3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
15 deletions
+15
-15
blenders.rst
modules/stitching/doc/blenders.rst
+2
-2
exposure_compensation.rst
modules/stitching/doc/exposure_compensation.rst
+3
-3
high_level.rst
modules/stitching/doc/high_level.rst
+5
-5
matching.rst
modules/stitching/doc/matching.rst
+4
-4
seam_estimation.rst
modules/stitching/doc/seam_estimation.rst
+1
-1
No files found.
modules/stitching/doc/blenders.rst
View file @
588658d1
...
@@ -43,7 +43,7 @@ detail::Blender::feed
...
@@ -43,7 +43,7 @@ detail::Blender::feed
Processes the image.
Processes the image.
.. ocv:function:: void detail::Blender::feed(
const Mat &img, const Mat &
mask, Point tl)
.. ocv:function:: void detail::Blender::feed(
InputArray img, InputArray
mask, Point tl)
:param img: Source image
:param img: Source image
...
@@ -56,7 +56,7 @@ detail::Blender::blend
...
@@ -56,7 +56,7 @@ detail::Blender::blend
Blends and returns the final pano.
Blends and returns the final pano.
.. ocv:function:: void detail::Blender::blend(
Mat &dst, Mat &
dst_mask)
.. ocv:function:: void detail::Blender::blend(
InputOutputArray dst, InputOutputArray
dst_mask)
:param dst: Final pano
:param dst: Final pano
...
...
modules/stitching/doc/exposure_compensation.rst
View file @
588658d1
...
@@ -27,9 +27,9 @@ Base class for all exposure compensators. ::
...
@@ -27,9 +27,9 @@ Base class for all exposure compensators. ::
detail::ExposureCompensator::feed
detail::ExposureCompensator::feed
----------------------------------
----------------------------------
.. ocv:function:: void detail::ExposureCompensator::feed(const std::vector<Point> &corners, const std::vector<
Mat> &images, const std::vector<
Mat> &masks)
.. ocv:function:: void detail::ExposureCompensator::feed(const std::vector<Point> &corners, const std::vector<
UMat> &images, const std::vector<U
Mat> &masks)
.. ocv:function:: void detail::ExposureCompensator::feed(const std::vector<Point> &corners, const std::vector<
Mat> &images, const std::vector<std::pair<
Mat,uchar> > &masks)
.. ocv:function:: void detail::ExposureCompensator::feed(const std::vector<Point> &corners, const std::vector<
UMat> &images, const std::vector<std::pair<U
Mat,uchar> > &masks)
:param corners: Source image top-left corners
:param corners: Source image top-left corners
...
@@ -42,7 +42,7 @@ detil::ExposureCompensator::apply
...
@@ -42,7 +42,7 @@ detil::ExposureCompensator::apply
Compensate exposure in the specified image.
Compensate exposure in the specified image.
.. ocv:function:: void detail::ExposureCompensator::apply(int index, Point corner,
Mat &image, const Mat &
mask)
.. ocv:function:: void detail::ExposureCompensator::apply(int index, Point corner,
InputOutputArray image, InputArray
mask)
:param index: Image index
:param index: Image index
...
...
modules/stitching/doc/high_level.rst
View file @
588658d1
...
@@ -110,9 +110,9 @@ These functions try to match the given images and to estimate rotations of each
...
@@ -110,9 +110,9 @@ These functions try to match the given images and to estimate rotations of each
.. note:: Use the functions only if you're aware of the stitching pipeline, otherwise use :ocv:func:`Stitcher::stitch`.
.. note:: Use the functions only if you're aware of the stitching pipeline, otherwise use :ocv:func:`Stitcher::stitch`.
.. ocv:function:: Status Stitcher::estimateTransform(InputArray images)
.. ocv:function:: Status Stitcher::estimateTransform(InputArray
OfArrays
images)
.. ocv:function:: Status Stitcher::estimateTransform(InputArray images, const std::vector<std::vector<Rect> > &rois)
.. ocv:function:: Status Stitcher::estimateTransform(InputArray
OfArrays
images, const std::vector<std::vector<Rect> > &rois)
:param images: Input images.
:param images: Input images.
...
@@ -129,7 +129,7 @@ These functions try to compose the given images (or images stored internally fro
...
@@ -129,7 +129,7 @@ These functions try to compose the given images (or images stored internally fro
.. ocv:function:: Status Stitcher::composePanorama(OutputArray pano)
.. ocv:function:: Status Stitcher::composePanorama(OutputArray pano)
.. ocv:function:: Status Stitcher::composePanorama(InputArray images, OutputArray pano)
.. ocv:function:: Status Stitcher::composePanorama(InputArray
OfArrays
images, OutputArray pano)
:param images: Input images.
:param images: Input images.
...
@@ -142,9 +142,9 @@ Stitcher::stitch
...
@@ -142,9 +142,9 @@ Stitcher::stitch
These functions try to stitch the given images.
These functions try to stitch the given images.
.. ocv:function:: Status Stitcher::stitch(InputArray images, OutputArray pano)
.. ocv:function:: Status Stitcher::stitch(InputArray
OfArrays
images, OutputArray pano)
.. ocv:function:: Status Stitcher::stitch(InputArray images, const std::vector<std::vector<Rect> > &rois, OutputArray pano)
.. ocv:function:: Status Stitcher::stitch(InputArray
OfArrays
images, const std::vector<std::vector<Rect> > &rois, OutputArray pano)
:param images: Input images.
:param images: Input images.
...
...
modules/stitching/doc/matching.rst
View file @
588658d1
...
@@ -40,9 +40,9 @@ detail::FeaturesFinder::operator()
...
@@ -40,9 +40,9 @@ detail::FeaturesFinder::operator()
Finds features in the given image.
Finds features in the given image.
.. ocv:function:: void detail::FeaturesFinder::operator ()(
const Mat &
image, ImageFeatures &features)
.. ocv:function:: void detail::FeaturesFinder::operator ()(
InputArray
image, ImageFeatures &features)
.. ocv:function:: void detail::FeaturesFinder::operator ()(
const Mat &
image, ImageFeatures &features, const std::vector<cv::Rect> &rois)
.. ocv:function:: void detail::FeaturesFinder::operator ()(
InputArray
image, ImageFeatures &features, const std::vector<cv::Rect> &rois)
:param image: Source image
:param image: Source image
...
@@ -64,7 +64,7 @@ detail::FeaturesFinder::find
...
@@ -64,7 +64,7 @@ detail::FeaturesFinder::find
This method must implement features finding logic in order to make the wrappers `detail::FeaturesFinder::operator()`_ work.
This method must implement features finding logic in order to make the wrappers `detail::FeaturesFinder::operator()`_ work.
.. ocv:function:: void detail::FeaturesFinder::find(
const Mat &
image, ImageFeatures &features)
.. ocv:function:: void detail::FeaturesFinder::find(
InputArray
image, ImageFeatures &features)
:param image: Source image
:param image: Source image
...
@@ -171,7 +171,7 @@ Performs images matching.
...
@@ -171,7 +171,7 @@ Performs images matching.
:param matches_info: Found matches
:param matches_info: Found matches
.. ocv:function:: void detail::FeaturesMatcher::operator ()( const std::vector<ImageFeatures> & features, std::vector<MatchesInfo> & pairwise_matches, const
Mat & mask=
Mat() )
.. ocv:function:: void detail::FeaturesMatcher::operator ()( const std::vector<ImageFeatures> & features, std::vector<MatchesInfo> & pairwise_matches, const
UMat & mask=U
Mat() )
:param features: Features of the source images
:param features: Features of the source images
...
...
modules/stitching/doc/seam_estimation.rst
View file @
588658d1
...
@@ -22,7 +22,7 @@ detail::SeamFinder::find
...
@@ -22,7 +22,7 @@ detail::SeamFinder::find
Estimates seams.
Estimates seams.
.. ocv:function:: void detail::SeamFinder::find(const std::vector<
Mat> &src, const std::vector<Point> &corners, std::vector<
Mat> &masks)
.. ocv:function:: void detail::SeamFinder::find(const std::vector<
UMat> &src, const std::vector<Point> &corners, std::vector<U
Mat> &masks)
:param src: Source images
:param src: Source images
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment