mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
updated gpu module docs
This commit is contained in:
parent
5a524f63d7
commit
7de8251607
21
doc/gpu.tex
21
doc/gpu.tex
@ -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.
|
||||
|
||||
|
BIN
doc/opencv.pdf
BIN
doc/opencv.pdf
Binary file not shown.
Loading…
Reference in New Issue
Block a user