opencv/modules/gpu/doc/matrix_reductions.rst

163 lines
5.0 KiB
ReStructuredText
Raw Normal View History

Matrix Reductions
=================
.. highlight:: cpp
.. index:: gpu::meanStdDev
2011-03-03 15:29:55 +08:00
gpu::meanStdDev
-------------------
2011-06-19 04:19:03 +08:00
.. cpp:function:: void gpu::meanStdDev(const GpuMat\& mtx, Scalar\& mean, Scalar\& stddev)
2011-03-29 07:05:42 +08:00
Computes a mean value and a standard deviation of matrix elements.
2011-03-29 07:05:42 +08:00
:param mtx: Source matrix. ``CV_8UC1`` matrices are supported for now.
2011-02-26 19:05:10 +08:00
:param mean: Mean value.
2011-02-26 19:05:10 +08:00
:param stddev: Standard deviation value.
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`meanStdDev`
.. index:: gpu::norm
2011-03-03 15:29:55 +08:00
gpu::norm
-------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: double gpu::norm(const GpuMat\& src1, int normType=NORM_L2)
.. ocv:function:: double gpu::norm(const GpuMat\& src1, int normType, GpuMat\& buf)
.. ocv:function:: double norm(const GpuMat\& src1, const GpuMat\& src2, int normType=NORM_L2)
2011-06-19 04:19:03 +08:00
Returns the norm of a matrix (or difference of two matrices).
2011-06-19 04:19:03 +08:00
:param src1: Source matrix. Any matrices except 64F are supported.
2011-06-19 04:19:03 +08:00
:param src2: Second source matrix (if any) with the same size and type as ``src1``.
2011-03-29 07:05:42 +08:00
:param normType: Norm type. ``NORM_L1`` , ``NORM_L2`` , and ``NORM_INF`` are supported for now.
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`norm`
.. index:: gpu::sum
2011-03-03 15:29:55 +08:00
gpu::sum
------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::sum(const GpuMat\& src)
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::sum(const GpuMat\& src, GpuMat\& buf)
2011-03-29 07:05:42 +08:00
Returns the sum of matrix elements.
2011-03-29 07:05:42 +08:00
:param src: Source image of any depth except for ``CV_64F`` .
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`sum`
.. index:: gpu::absSum
2011-03-03 15:29:55 +08:00
gpu::absSum
---------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::absSum(const GpuMat\& src)
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::absSum(const GpuMat\& src, GpuMat\& buf)
2011-03-29 07:05:42 +08:00
Returns the sum of absolute values for matrix elements.
2011-03-29 07:05:42 +08:00
:param src: Source image of any depth except for ``CV_64F`` .
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
.. index:: gpu::sqrSum
2011-03-03 15:29:55 +08:00
gpu::sqrSum
---------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::sqrSum(const GpuMat\& src)
2011-06-16 20:48:23 +08:00
.. ocv:function:: Scalar gpu::sqrSum(const GpuMat\& src, GpuMat\& buf)
2011-03-29 07:05:42 +08:00
Returns the squared sum of matrix elements.
2011-03-29 07:05:42 +08:00
:param src: Source image of any depth except for ``CV_64F`` .
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
.. index:: gpu::minMax
2011-03-03 15:29:55 +08:00
gpu::minMax
---------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: void gpu::minMax(const GpuMat\& src, double* minVal, double* maxVal=0, const GpuMat\& mask=GpuMat())
2011-06-16 20:48:23 +08:00
.. ocv:function:: void gpu::minMax(const GpuMat\& src, double* minVal, double* maxVal, const GpuMat\& mask, GpuMat\& buf)
2011-02-26 19:05:10 +08:00
Finds global minimum and maximum matrix elements and returns their values.
2011-02-26 19:05:10 +08:00
:param src: Single-channel source image.
2011-03-29 07:05:42 +08:00
:param minVal: Pointer to the returned minimum value. Use ``NULL`` if not required.
2011-03-29 07:05:42 +08:00
:param maxVal: Pointer to the returned maximum value. Use ``NULL`` if not required.
2011-02-26 19:05:10 +08:00
:param mask: Optional mask to select a sub-matrix.
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
The function does not work with ``CV_64F`` images on GPUs with the compute capability < 1.3.
2011-03-29 07:05:42 +08:00
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`minMaxLoc`
.. index:: gpu::minMaxLoc
2011-03-03 15:29:55 +08:00
gpu::minMaxLoc
------------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: void gpu::minMaxLoc(const GpuMat& src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0, const GpuMat& mask=GpuMat())
2011-06-16 20:48:23 +08:00
.. ocv:function:: void gpu::minMaxLoc(const GpuMat& src, double* minVal, double* maxVal, Point* minLoc, Point* maxLoc, const GpuMat& mask, GpuMat& valbuf, GpuMat& locbuf)
2011-02-26 19:05:10 +08:00
Finds global minimum and maximum matrix elements and returns their values with locations.
2011-02-26 19:05:10 +08:00
:param src: Single-channel source image.
2011-03-29 07:05:42 +08:00
:param minVal: Pointer to the returned minimum value. Use ``NULL`` if not required.
2011-03-29 07:05:42 +08:00
:param maxVal: Pointer to the returned maximum value. Use ``NULL`` if not required.
2011-03-29 07:05:42 +08:00
:param minValLoc: Pointer to the returned minimum location. Use ``NULL`` if not required.
2011-03-29 07:05:42 +08:00
:param maxValLoc: Pointer to the returned maximum location. Use ``NULL`` if not required.
2011-02-26 19:05:10 +08:00
:param mask: Optional mask to select a sub-matrix.
2011-03-29 07:05:42 +08:00
:param valbuf: Optional values buffer to avoid extra memory allocations. It is resized automatically.
2011-03-29 07:05:42 +08:00
:param locbuf: Optional locations buffer to avoid extra memory allocations. It is resized automatically.
2011-03-29 07:05:42 +08:00
The function does not work with ``CV_64F`` images on GPU with the compute capability < 1.3.
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`minMaxLoc`
2011-02-26 19:05:10 +08:00
.. index:: gpu::countNonZero
2011-03-03 15:29:55 +08:00
gpu::countNonZero
---------------------
2011-06-16 20:48:23 +08:00
.. ocv:function:: int gpu::countNonZero(const GpuMat\& src)
2011-06-16 20:48:23 +08:00
.. ocv:function:: int gpu::countNonZero(const GpuMat\& src, GpuMat\& buf)
2011-02-26 19:05:10 +08:00
Counts non-zero matrix elements.
2011-02-26 19:05:10 +08:00
:param src: Single-channel source image.
2011-03-29 07:05:42 +08:00
:param buf: Optional buffer to avoid extra memory allocations. It is resized automatically.
2011-06-19 04:19:03 +08:00
The function does not work with ``CV_64F`` images on GPUs with the compute capability < 1.3.
2011-03-29 07:05:42 +08:00
2011-06-19 04:19:03 +08:00
.. seealso::
:ocv:func:`countNonZero`