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
7de82516
Commit
7de82516
authored
Jan 14, 2011
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated gpu module docs
parent
5a524f63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
gpu.tex
doc/gpu.tex
+20
-1
opencv.pdf
doc/opencv.pdf
+0
-0
No files found.
doc/gpu.tex
View file @
7de82516
...
...
@@ -204,10 +204,29 @@ void polarToCart(const GpuMat\& magnitude, const GpuMat\& angle,\par
See also:
\cvCppCross
{
polarToCart
}
.
\section
{
Per-element Operations.
}
\cvCppFunc
{
add
}
Computes matrx-matrix or matrix-scalar sum.
\cvdefCpp
{
void add(const GpuMat
\&
a, const GpuMat
\&
b, GpuMat
\&
c);
}
\begin{description}
\cvarg
{
a
}{
First source matrix. 8UC1, 8UC4, 32SC1 and 32FC2 matrixes are supported for now.
}
\cvarg
{
b
}{
Second source matrix. Must have the same size and type as
\texttt
{
a
}
.
}
\cvarg
{
c
}{
Destination matrix. Will have the same size and type as
\texttt
{
a
}
.
}
\end{description}
\cvdefCpp
{
void add(const GpuMat
\&
a, const Scalar
\&
sc, GpuMat
\&
c);
}
\begin{description}
\cvarg
{
a
}{
Source matrix. 32SC1 and 32FC2 matrixes are supported for now.
}
\cvarg
{
b
}{
Source scalar.
}
\cvarg
{
c
}{
Destination matrix. Will have the same size and type as
\texttt
{
a
}
.
}
\end{description}
See also:
\cvCppCross
{
add
}
.
\cvfunc
{
cv::gpu::bitwise
\_
not
}
\label
{
cppfunc.gpu.bitwise.not
}
Performs per-element bitwise inversion.
...
...
doc/opencv.pdf
View file @
7de82516
No preview for this file type
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