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
168a6c37
Commit
168a6c37
authored
Jun 23, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
start merging the reference manuals
parent
beed9419
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
17 deletions
+23
-17
default.css_t
doc/_themes/blue/static/default.css_t
+19
-6
ocv.py
doc/ocv.py
+0
-0
operations_on_arrays.rst
modules/core/doc/operations_on_arrays.rst
+4
-11
No files found.
doc/_themes/blue/static/default.css_t
View file @
168a6c37
...
@@ -274,17 +274,30 @@ tt.descname {
...
@@ -274,17 +274,30 @@ tt.descname {
font-size: 1.6em;
font-size: 1.6em;
}
}
dl.cfunction {
div.math p {
padding-bottom: 9px;
margin-top: 10px;
margin-bottom: 10px;
}
dl.function > dt:first-child {
margin-bottom: 7px;
background-color: #ecf0f3;
}
}
dl.cfunction > dt:first-child {
dl.cfunction > dt:first-child {
margin-bottom: 7px;
margin-bottom: 7px;
border-bottom: 1px dotted black;
background-color: #ecf0f3;
}
dl.pyfunction > dt:first-child {
margin-bottom: 7px;
background-color: #ecf0f3;
}
}
div.math p {
table.field-list {
margin-top: 10px;
margin-top: 20px;
margin-bottom: 10px;
}
}
ul.simple {
list-style: none;
}
doc/ocv.py
View file @
168a6c37
This diff is collapsed.
Click to expand it.
modules/core/doc/operations_on_arrays.rst
View file @
168a6c37
...
@@ -3,15 +3,6 @@ Operations on Arrays
...
@@ -3,15 +3,6 @@ Operations on Arrays
.. highlight:: cpp
.. highlight:: cpp
.. list-table:: **Arithmetical Operations**
* -
-
* - :ocv:func:`abs` (src)
- Computes an absolute value of each matrix element.
* - :ocv:func:`absdiff` (src1, src2, dst)
- Computes the per-element absolute difference between 2 arrays or between an array and a scalar.
abs
abs
---
---
.. ocv:function:: MatExpr abs(const Mat& src)
.. ocv:function:: MatExpr abs(const Mat& src)
...
@@ -77,9 +68,11 @@ The function ``absdiff`` computes:
...
@@ -77,9 +68,11 @@ The function ``absdiff`` computes:
add
add
-------
-------
.. ocv:function:: void add(InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1)
Computes the per-element sum of two arrays or an array and a scalar.
Computes the per-element sum of two arrays or an array and a scalar.
.. ocv:function:: void add(InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1)
.. ocv:pyfunction:: cv2.add(src1, src2 [, dst=None [, mask=None [, dtype=-1]]]) -> dst
:param src1: First source array or a scalar.
:param src1: First source array or a scalar.
...
...
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