2011-06-19 04:19:03 +08:00
Per-element Operations
2013-06-04 17:32:35 +08:00
======================
2011-03-06 05:26:13 +08:00
.. highlight :: cpp
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
gpu::add
2013-06-11 19:45:04 +08:00
--------
2011-08-30 16:27:23 +08:00
Computes a matrix-matrix or matrix-scalar sum.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::add(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), int dtype = -1, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-23 18:56:20 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar. Matrix should have the same size and type as ``src1`` .
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and number of channels as the input array(s). The depth is defined by ``dtype`` or ``src1`` depth.
2011-03-06 05:26:13 +08:00
2011-12-27 16:25:47 +08:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2012-05-29 18:36:19 +08:00
2011-12-27 16:25:47 +08:00
:param dtype: Optional depth of the output array.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `add`
2011-03-06 05:26:13 +08:00
gpu::subtract
2013-06-11 19:45:04 +08:00
-------------
2011-08-30 16:27:23 +08:00
Computes a matrix-matrix or matrix-scalar difference.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::subtract(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), int dtype = -1, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar. Matrix should have the same size and type as ``src1`` .
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and number of channels as the input array(s). The depth is defined by ``dtype`` or ``src1`` depth.
2011-03-06 05:26:13 +08:00
2011-12-27 16:25:47 +08:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2012-05-29 18:36:19 +08:00
2011-12-27 16:25:47 +08:00
:param dtype: Optional depth of the output array.
2011-03-23 18:56:20 +08:00
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `subtract`
2011-03-06 05:26:13 +08:00
gpu::multiply
2013-06-11 19:45:04 +08:00
-------------
2011-08-30 16:27:23 +08:00
Computes a matrix-matrix or matrix-scalar per-element product.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::multiply(InputArray src1, InputArray src2, OutputArray dst, double scale = 1, int dtype = -1, Stream& stream = Stream::Null())
2011-03-23 18:56:20 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and number of channels as the input array(s). The depth is defined by ``dtype`` or ``src1`` depth.
2011-12-27 16:25:47 +08:00
:param scale: Optional scale factor.
2012-05-29 18:36:19 +08:00
2011-12-27 16:25:47 +08:00
:param dtype: Optional depth of the output array.
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `multiply`
2011-03-06 05:26:13 +08:00
gpu::divide
2012-03-29 16:07:57 +08:00
-----------
2011-12-27 16:25:47 +08:00
Computes a matrix-matrix or matrix-scalar division.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::divide(InputArray src1, InputArray src2, OutputArray dst, double scale = 1, int dtype = -1, Stream& stream = Stream::Null())
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::divide(double src1, InputArray src2, OutputArray dst, int dtype = -1, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or a scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and number of channels as the input array(s). The depth is defined by ``dtype`` or ``src1`` depth.
2011-12-27 16:25:47 +08:00
:param scale: Optional scale factor.
2012-05-29 18:36:19 +08:00
2011-12-27 16:25:47 +08:00
:param dtype: Optional depth of the output array.
2011-03-23 18:56:20 +08:00
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
2011-03-23 18:56:20 +08:00
2011-08-30 16:27:23 +08:00
This function, in contrast to :ocv:func: `divide` , uses a round-down rounding mode.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `divide`
2011-03-06 05:26:13 +08:00
2013-06-04 17:32:35 +08:00
2013-06-11 19:45:04 +08:00
gpu::absdiff
------------
Computes per-element absolute difference of two matrices (or of a matrix and scalar).
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::absdiff(InputArray src1, InputArray src2, OutputArray dst, Stream& stream = Stream::Null())
2011-12-27 16:25:47 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-12-27 16:25:47 +08:00
:param stream: Stream for the asynchronous version.
2013-06-11 19:45:04 +08:00
.. seealso :: :ocv:func: `absdiff`
2011-12-27 16:25:47 +08:00
2012-02-22 18:00:53 +08:00
gpu::abs
2013-06-11 19:45:04 +08:00
--------
2012-02-22 18:00:53 +08:00
Computes an absolute value of each matrix element.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::abs(InputArray src, OutputArray dst, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2011-03-23 18:56:20 +08:00
2011-08-30 16:27:23 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
2012-02-22 18:00:53 +08:00
.. seealso :: :ocv:func: `abs`
2011-08-30 16:27:23 +08:00
2012-02-22 18:00:53 +08:00
gpu::sqr
2013-06-11 19:45:04 +08:00
--------
2012-02-22 18:00:53 +08:00
Computes a square value of each matrix element.
2011-08-30 16:27:23 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::sqr(InputArray src, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2012-02-22 18:00:53 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
2011-08-30 16:27:23 +08:00
2012-02-22 18:00:53 +08:00
gpu::sqrt
2013-06-11 19:45:04 +08:00
---------
2012-02-22 18:00:53 +08:00
Computes a square root of each matrix element.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::sqrt(InputArray src, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2011-08-30 16:27:23 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
2012-02-22 18:00:53 +08:00
.. seealso :: :ocv:func: `sqrt`
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
2012-02-22 18:00:53 +08:00
gpu::exp
2013-06-11 19:45:04 +08:00
--------
2012-02-22 18:00:53 +08:00
Computes an exponent of each matrix element.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::exp(InputArray src, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2012-02-22 18:00:53 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
2012-02-22 18:00:53 +08:00
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `exp`
2011-03-06 05:26:13 +08:00
gpu::log
2013-06-11 19:45:04 +08:00
--------
2011-08-30 16:27:23 +08:00
Computes a natural logarithm of absolute value of each matrix element.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::log(InputArray src, OutputArray dst, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2011-03-23 18:56:20 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
2011-03-23 18:56:20 +08:00
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `log`
2011-03-06 05:26:13 +08:00
2012-02-22 18:00:53 +08:00
gpu::pow
2013-06-11 19:45:04 +08:00
--------
2012-02-22 18:00:53 +08:00
Raises every matrix element to a power.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::pow(InputArray src, double power, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
2013-06-11 19:45:04 +08:00
:param src: Source matrix.
2012-02-22 18:00:53 +08:00
:param power: Exponent of power.
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
2013-06-11 19:45:04 +08:00
The function `` pow `` raises every element of the input matrix to `` power `` :
2012-02-22 18:00:53 +08:00
.. math ::
2013-06-11 19:45:04 +08:00
\texttt{dst} (I) = \fork{\texttt{src}(I)^power}{if \texttt{power} is integer}{|\texttt{src}(I)|^power}{otherwise}
2012-02-22 18:00:53 +08:00
.. seealso :: :ocv:func: `pow`
2011-03-06 05:26:13 +08:00
gpu::compare
2013-06-11 19:45:04 +08:00
------------
Compares elements of two matrices (or of a matrix and scalar).
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::compare(InputArray src1, InputArray src2, OutputArray dst, int cmpop, Stream& stream = Stream::Null())
2012-05-29 18:36:19 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
:param cmpop: Flag specifying the relation between the elements to be checked:
2011-08-30 16:27:23 +08:00
2012-05-29 18:36:19 +08:00
* **CMP_EQ:** `` a(.) == b(.) ``
* **CMP_GT:** `` a(.) < b(.) ``
* **CMP_GE:** `` a(.) <= b(.) ``
* **CMP_LT:** `` a(.) < b(.) ``
* **CMP_LE:** `` a(.) <= b(.) ``
* **CMP_NE:** `` a(.) != b(.) ``
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `compare`
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
gpu::bitwise_not
2013-06-11 19:45:04 +08:00
----------------
2011-08-30 16:27:23 +08:00
Performs a per-element bitwise inversion.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::bitwise_not(InputArray src, OutputArray dst, InputArray mask = noArray(), Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
:param src: Source matrix.
2011-08-30 16:27:23 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
2011-03-06 05:26:13 +08:00
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
gpu::bitwise_or
2013-06-11 19:45:04 +08:00
---------------
Performs a per-element bitwise disjunction of two matrices (or of matrix and scalar).
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::bitwise_or(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
gpu::bitwise_and
2013-06-11 19:45:04 +08:00
----------------
Performs a per-element bitwise conjunction of two matrices (or of matrix and scalar).
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::bitwise_and(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
2011-03-23 18:56:20 +08:00
2011-03-06 05:26:13 +08:00
gpu::bitwise_xor
2013-06-11 19:45:04 +08:00
----------------
Performs a per-element bitwise `` exclusive or `` operation of two matrices (or of matrix and scalar).
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::bitwise_xor(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = noArray(), Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
2011-03-23 18:56:20 +08:00
2012-02-22 18:00:53 +08:00
gpu::rshift
2013-06-11 19:45:04 +08:00
-----------
2012-02-22 18:00:53 +08:00
Performs pixel by pixel right shift of an image by a constant value.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::rshift(InputArray src, Scalar_<int> val, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
:param src: Source matrix. Supports 1, 3 and 4 channels images with integers elements.
2013-06-11 19:45:04 +08:00
:param val: Constant values, one per channel.
2012-02-22 18:00:53 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
gpu::lshift
2013-06-11 19:45:04 +08:00
-----------
2012-02-22 18:00:53 +08:00
Performs pixel by pixel right left of an image by a constant value.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::lshift(InputArray src, Scalar_<int> val, OutputArray dst, Stream& stream = Stream::Null())
2012-02-22 18:00:53 +08:00
:param src: Source matrix. Supports 1, 3 and 4 channels images with ``CV_8U`` , ``CV_16U`` or ``CV_32S`` depth.
2013-06-11 19:45:04 +08:00
:param val: Constant values, one per channel.
2012-02-22 18:00:53 +08:00
:param dst: Destination matrix with the same size and type as ``src`` .
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
gpu::min
2013-06-11 19:45:04 +08:00
--------
2011-08-30 16:27:23 +08:00
Computes the per-element minimum of two matrices (or a matrix and a scalar).
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::min(InputArray src1, InputArray src2, OutputArray dst, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
2011-03-23 18:56:20 +08:00
:param stream: Stream for the asynchronous version.
2011-03-06 05:26:13 +08:00
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `min`
2011-03-06 05:26:13 +08:00
gpu::max
2013-06-11 19:45:04 +08:00
--------
2011-08-30 16:27:23 +08:00
Computes the per-element maximum of two matrices (or a matrix and a scalar).
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::max(InputArray src1, InputArray src2, OutputArray dst, Stream& stream = Stream::Null())
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src1: First source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param src2: Second source matrix or scalar.
2011-03-06 05:26:13 +08:00
2013-06-11 19:45:04 +08:00
:param dst: Destination matrix that has the same size and type as the input array(s).
2011-03-06 05:26:13 +08:00
:param stream: Stream for the asynchronous version.
2011-08-30 16:27:23 +08:00
.. seealso :: :ocv:func: `max`
2013-06-04 17:32:35 +08:00
2013-06-11 19:45:04 +08:00
gpu::addWeighted
----------------
Computes the weighted sum of two arrays.
.. ocv:function :: void gpu::addWeighted(InputArray src1, double alpha, InputArray src2, double beta, double gamma, OutputArray dst, int dtype = -1, Stream& stream = Stream::Null())
:param src1: First source array.
:param alpha: Weight for the first array elements.
:param src2: Second source array of the same size and channel number as ``src1`` .
:param beta: Weight for the second array elements.
:param dst: Destination array that has the same size and number of channels as the input arrays.
:param gamma: Scalar added to each sum.
:param dtype: Optional depth of the destination array. When both input arrays have the same depth, ``dtype`` can be set to ``-1``, which will be equivalent to ``src1.depth()``.
:param stream: Stream for the asynchronous version.
The function `` addWeighted `` calculates the weighted sum of two arrays as follows:
.. math ::
\texttt{dst} (I)= \texttt{saturate} ( \texttt{src1} (I)* \texttt{alpha} + \texttt{src2} (I)* \texttt{beta} + \texttt{gamma} )
where `` I `` is a multi-dimensional index of array elements. In case of multi-channel arrays, each channel is processed independently.
.. seealso :: :ocv:func: `addWeighted`
2013-06-04 17:32:35 +08:00
gpu::threshold
2013-06-11 19:45:04 +08:00
--------------
2013-06-04 17:32:35 +08:00
Applies a fixed-level threshold to each array element.
2013-06-11 19:45:04 +08:00
.. ocv:function :: double gpu::threshold(InputArray src, OutputArray dst, double thresh, double maxval, int type, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param src: Source array (single-channel).
:param dst: Destination array with the same size and type as ``src`` .
:param thresh: Threshold value.
:param maxval: Maximum value to use with ``THRESH_BINARY`` and ``THRESH_BINARY_INV`` threshold types.
:param type: Threshold type. For details, see :ocv:func:`threshold` . The ``THRESH_OTSU`` threshold type is not supported.
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `threshold`
gpu::magnitude
2013-06-11 19:45:04 +08:00
--------------
2013-06-04 17:32:35 +08:00
Computes magnitudes of complex matrix elements.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::magnitude(InputArray xy, OutputArray magnitude, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::magnitude(InputArray x, InputArray y, OutputArray magnitude, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param xy: Source complex matrix in the interleaved format ( ``CV_32FC2`` ).
:param x: Source matrix containing real components ( ``CV_32FC1`` ).
:param y: Source matrix containing imaginary components ( ``CV_32FC1`` ).
:param magnitude: Destination matrix of float magnitudes ( ``CV_32FC1`` ).
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `magnitude`
gpu::magnitudeSqr
2013-06-11 19:45:04 +08:00
-----------------
2013-06-04 17:32:35 +08:00
Computes squared magnitudes of complex matrix elements.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::magnitudeSqr(InputArray xy, OutputArray magnitude, Stream& stream=Stream::Null() )
2013-06-04 17:32:35 +08:00
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::magnitudeSqr(InputArray x, InputArray y, OutputArray magnitude, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param xy: Source complex matrix in the interleaved format ( ``CV_32FC2`` ).
:param x: Source matrix containing real components ( ``CV_32FC1`` ).
:param y: Source matrix containing imaginary components ( ``CV_32FC1`` ).
:param magnitude: Destination matrix of float magnitude squares ( ``CV_32FC1`` ).
:param stream: Stream for the asynchronous version.
gpu::phase
2013-06-11 19:45:04 +08:00
----------
2013-06-04 17:32:35 +08:00
Computes polar angles of complex matrix elements.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::phase(InputArray x, InputArray y, OutputArray angle, bool angleInDegrees = false, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param x: Source matrix containing real components ( ``CV_32FC1`` ).
:param y: Source matrix containing imaginary components ( ``CV_32FC1`` ).
:param angle: Destination matrix of angles ( ``CV_32FC1`` ).
:param angleInDegrees: Flag for angles that must be evaluated in degrees.
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `phase`
gpu::cartToPolar
2013-06-11 19:45:04 +08:00
----------------
2013-06-04 17:32:35 +08:00
Converts Cartesian coordinates into polar.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::cartToPolar(InputArray x, InputArray y, OutputArray magnitude, OutputArray angle, bool angleInDegrees = false, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param x: Source matrix containing real components ( ``CV_32FC1`` ).
:param y: Source matrix containing imaginary components ( ``CV_32FC1`` ).
:param magnitude: Destination matrix of float magnitudes ( ``CV_32FC1`` ).
:param angle: Destination matrix of angles ( ``CV_32FC1`` ).
:param angleInDegrees: Flag for angles that must be evaluated in degrees.
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `cartToPolar`
gpu::polarToCart
2013-06-11 19:45:04 +08:00
----------------
2013-06-04 17:32:35 +08:00
Converts polar coordinates into Cartesian.
2013-06-11 19:45:04 +08:00
.. ocv:function :: void gpu::polarToCart(InputArray magnitude, InputArray angle, OutputArray x, OutputArray y, bool angleInDegrees = false, Stream& stream = Stream::Null())
2013-06-04 17:32:35 +08:00
:param magnitude: Source matrix containing magnitudes ( ``CV_32FC1`` ).
:param angle: Source matrix containing angles ( ``CV_32FC1`` ).
:param x: Destination matrix of real components ( ``CV_32FC1`` ).
:param y: Destination matrix of imaginary components ( ``CV_32FC1`` ).
:param angleInDegrees: Flag that indicates angles in degrees.
:param stream: Stream for the asynchronous version.
.. seealso :: :ocv:func: `polarToCart`