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
047be13c
Commit
047be13c
authored
Jan 31, 2011
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added docs for absSum function
parent
79d8d50c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
gpu_matrix_reductions.tex
doc/gpu_matrix_reductions.tex
+14
-2
No files found.
doc/gpu_matrix_reductions.tex
View file @
047be13c
...
...
@@ -41,20 +41,32 @@ Returns sum of matrix elements.
Scalar sum(const GpuMat
\&
src, GpuMat
\&
buf);
}
\begin{description}
\cvarg
{
src
}{
Source image of any depth except
\texttt
{
CV
\_
64F
}
, single-channel
.
}
\cvarg
{
src
}{
Source image of any depth except
\texttt
{
CV
\_
64F
}
.
}
\cvarg
{
buf
}{
Optional buffer to avoid extra memory allocations. It's resized automatically.
}
\end{description}
See also:
\cvCppCross
{
sum
}
.
\cvCppFunc
{
gpu::absSum
}
Returns sum of matrix elements absolute values.
\cvdefCpp
{
Scalar absSum(const GpuMat
\&
src);
\newline
Scalar absSum(const GpuMat
\&
src, GpuMat
\&
buf);
}
\begin{description}
\cvarg
{
src
}{
Source image of any depth except
\texttt
{
CV
\_
64F
}
.
}
\cvarg
{
buf
}{
Optional buffer to avoid extra memory allocations. It's resized automatically.
}
\end{description}
\cvCppFunc
{
gpu::sqrSum
}
Returns squared sum of matrix elements.
\cvdefCpp
{
Scalar sqrSum(const GpuMat
\&
src);
\newline
Scalar sqrSum(const GpuMat
\&
src, GpuMat
\&
buf);
}
\begin{description}
\cvarg
{
src
}{
Source image of any depth except
\texttt
{
CV
\_
64F
}
, single-channel
.
}
\cvarg
{
src
}{
Source image of any depth except
\texttt
{
CV
\_
64F
}
.
}
\cvarg
{
buf
}{
Optional buffer to avoid extra memory allocations. It's resized automatically.
}
\end{description}
...
...
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