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
4ddcc31e
Commit
4ddcc31e
authored
May 30, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed few errors in documentation backporting
parent
81a59880
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
6 deletions
+4
-6
check_docs2.py
doc/check_docs2.py
+1
-1
operations_on_arrays.rst
modules/core/doc/operations_on_arrays.rst
+2
-2
feature_detection_and_description.rst
modules/gpu/doc/feature_detection_and_description.rst
+1
-1
per_element_operations.rst
modules/gpu/doc/per_element_operations.rst
+0
-2
No files found.
doc/check_docs2.py
View file @
4ddcc31e
...
...
@@ -31,7 +31,7 @@ doc_signatures_whitelist = [
# templates
"Matx"
,
"Vec"
,
"SparseMat_"
,
"Scalar_"
,
"Mat_"
,
"Ptr"
,
"Size_"
,
"Point_"
,
"Rect_"
,
"Point3_"
,
"DataType"
,
"detail::RotationWarperBase"
,
"flann::Index_"
,
"CalonderDescriptorExtractor"
,
"gpu::DevMem2D_"
,
"gpu::PtrStep_"
,
"gpu::PtrElemStep_"
,
"gpu::DevMem2D_"
,
"gpu::PtrStep_"
,
"gpu::PtrElemStep_"
,
"gpu::BruteForceMatcher_GPU"
,
# black boxes
"CvArr"
,
"CvFileStorage"
,
# other
...
...
modules/core/doc/operations_on_arrays.rst
View file @
4ddcc31e
...
...
@@ -1720,7 +1720,7 @@ Composes a multi-channel array from several single-channel arrays.
.. ocv:function:: void merge(const Mat* mv, size_t count, OutputArray dst)
.. ocv:function:: void merge(
InputArrayOfArrays
mv, OutputArray dst )
.. ocv:function:: void merge(
const vector<Mat>&
mv, OutputArray dst )
.. ocv:pyfunction:: cv2.merge(mv[, dst]) -> dst
...
...
@@ -3040,7 +3040,7 @@ Divides a multi-channel array into several single-channel arrays.
.. ocv:function:: void split( const Mat& src, Mat* mvbegin )
.. ocv:function:: void split(
InputArray m, OutputArrayOfArrays
mv )
.. ocv:function:: void split(
const Mat& m, vector<Mat>&
mv )
.. ocv:pyfunction:: cv2.split(m[, mv]) -> mv
...
...
modules/gpu/doc/feature_detection_and_description.rst
View file @
4ddcc31e
...
...
@@ -372,7 +372,7 @@ Releases inner buffer memory.
gpu::BruteForceMatcher_GPU
--------------------------
.. ocv:class:: gpu::BruteForceMatcher_GPU
.. ocv:class::
template<class Distance>
gpu::BruteForceMatcher_GPU
Brute-force descriptor matcher. For each descriptor in the first set, this matcher finds the closest descriptor in the second set by trying each one. This descriptor matcher supports masking permissible matches between descriptor sets. ::
...
...
modules/gpu/doc/per_element_operations.rst
View file @
4ddcc31e
...
...
@@ -276,8 +276,6 @@ Compares elements of two matrices.
.. ocv:function:: void gpu::compare( const GpuMat& a, const GpuMat& b, GpuMat& c, int cmpop, Stream& stream=Stream::Null() )
.. ocv:function:: void gpu::compare(const GpuMat& a, Scalar sc, GpuMat& c, int cmpop, Stream& stream = Stream::Null())
:param a: First source matrix.
:param b: Second source matrix with the same size and type as ``a`` .
...
...
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