opencv/modules/gpu/doc/per_element_operations.rst

298 lines
9.0 KiB
ReStructuredText
Raw Normal View History

Per-element Operations.
=======================
.. highlight:: cpp
.. index:: gpu::add
gpu::add
------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::add(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::add(const GpuMat& src1, const Scalar& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
Computes matrix-matrix or matrix-scalar sum.
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC1``, ``CV_8UC4``, ``CV_32SC1`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to be added to ``src1``.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src1``.
See also: :c:func:`add`.
.. index:: gpu::subtract
gpu::subtract
-----------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::subtract(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::subtract(const GpuMat& src1, const Scalar& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
Computes matrix-matrix or matrix-scalar difference.
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC1``, ``CV_8UC4``, ``CV_32SC1`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to be subtracted from ``src1``.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src1``.
See also: :c:func:`subtract`.
.. index:: gpu::multiply
gpu::multiply
-----------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::multiply(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::multiply(const GpuMat& src1, const Scalar& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
Computes matrix-matrix or matrix-scalar per-element product.
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC1``, ``CV_8UC4``, ``CV_32SC1`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to be multiplied by ``src1`` elements.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src1``.
See also: :c:func:`multiply`.
.. index:: gpu::divide
gpu::divide
---------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::divide(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::divide(const GpuMat& src1, const Scalar& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
Computes matrix-matrix or matrix-scalar sum.
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC1``, ``CV_8UC4``, ``CV_32SC1`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar. The ``src1`` elements are divided by it.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src1``.
2011-03-29 07:05:42 +08:00
This function in contrast to :c:func:`divide` uses round-down rounding mode.
See also: :c:func:`divide`.
.. index:: gpu::exp
gpu::exp
------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::exp(const GpuMat& src, GpuMat& dst)
Computes exponent of each matrix element.
2011-03-29 07:05:42 +08:00
:param src: Source matrix. ``CV_32FC1`` matrixes are supported for now.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src``.
See also: :c:func:`exp`.
.. index:: gpu::log
gpu::log
------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::log(const GpuMat& src, GpuMat& dst)
Computes natural logarithm of absolute value of each matrix element.
2011-03-29 07:05:42 +08:00
:param src: Source matrix. ``CV_32FC1`` matrixes are supported for now.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src``.
See also: :c:func:`log`.
.. index:: gpu::absdiff
gpu::absdiff
----------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::absdiff(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::absdiff(const GpuMat& src1, const Scalar& src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
Computes per-element absolute difference of two matrices (or of matrix and scalar).
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC1``, ``CV_8UC4``, ``CV_32SC1`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to be added to ``src1``.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size and type as ``src1``.
See also: :c:func:`absdiff`.
.. index:: gpu::compare
gpu::compare
----------------
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::compare(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, int cmpop)
Compares elements of two matrices.
2011-03-29 07:05:42 +08:00
:param src1: First source matrix. ``CV_8UC4`` and ``CV_32FC1`` matrices are supported for now.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix. Must have the same size and type as ``a``.
2011-03-29 07:05:42 +08:00
:param dst: Destination matrix. Will have the same size as ``a`` and be ``CV_8UC1`` type.
:param cmpop: Flag specifying the relation between the elements to be checked:
2011-03-29 07:05:42 +08:00
* **CMP_EQ:** ``src1(.) == src2(.)``
* **CMP_GT:** ``src1(.) < src2(.)``
* **CMP_GE:** ``src1(.) <= src2(.)``
* **CMP_LT:** ``src1(.) < src2(.)``
* **CMP_LE:** ``src1(.) <= src2(.)``
* **CMP_NE:** ``src1(.) != src2(.)``
See also: :c:func:`compare`.
.. index:: gpu::bitwise_not
gpu::bitwise_not
--------------------
.. cpp:function:: void gpu::bitwise_not(const GpuMat& src, GpuMat& dst, const GpuMat& mask=GpuMat())
.. cpp:function:: void gpu::bitwise_not(const GpuMat& src, GpuMat& dst, const GpuMat& mask, const Stream& stream)
Performs per-element bitwise inversion.
:param src: Source matrix.
:param dst: Destination matrix. Will have the same size and type as ``src``.
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
.. index:: gpu::bitwise_or
gpu::bitwise_or
-------------------
.. cpp:function:: void gpu::bitwise_or(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat())
.. cpp:function:: void gpu::bitwise_or(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, const Stream& stream)
Performs per-element bitwise disjunction of two matrices.
:param src1: First source matrix.
:param src2: Second source matrix. It must have the same size and type as ``src1``.
:param dst: Destination matrix. Will have the same size and type as ``src1``.
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
.. index:: gpu::bitwise_and
gpu::bitwise_and
--------------------
.. cpp:function:: void gpu::bitwise_and(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat())
.. cpp:function:: void gpu::bitwise_and(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, const Stream& stream)
Performs per-element bitwise conjunction of two matrices.
:param src1: First source matrix.
:param src2: Second source matrix. It must have the same size and type as ``src1``.
:param dst: Destination matrix. Will have the same size and type as ``src1``.
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
.. index:: gpu::bitwise_xor
gpu::bitwise_xor
--------------------
.. cpp:function:: void gpu::bitwise_xor(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask=GpuMat())
.. cpp:function:: void gpu::bitwise_xor(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const GpuMat& mask, const Stream& stream)
Performs per-element bitwise "exclusive or" of two matrices.
:param src1: First source matrix.
:param src2: Second source matrix. It must have the same size and type as ``src1``.
:param dst: Destination matrix. Will have the same size and type as ``src1``.
:param mask: Optional operation mask. 8-bit single channel image.
:param stream: Stream for the asynchronous version.
.. index:: gpu::min
gpu::min
------------
.. cpp:function:: void gpu::min(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
.. cpp:function:: void gpu::min(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const Stream& stream)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::min(const GpuMat& src1, double src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::min(const GpuMat& src1, double src2, GpuMat& dst, const Stream& stream)
2011-03-09 06:22:24 +08:00
Computes per-element minimum of two matrices (or a matrix and a scalar).
:param src1: First source matrix.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to compare compare ``src1`` elements with.
:param dst: Destination matrix. Will have the same size and type as ``src1``.
:param stream: Stream for the asynchronous version.
See also: :c:func:`min`.
.. index:: gpu::max
gpu::max
------------
.. cpp:function:: void gpu::max(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
2011-03-09 06:22:24 +08:00
.. cpp:function:: void gpu::max(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, const Stream& stream)
2011-03-09 06:22:24 +08:00
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::max(const GpuMat& src1, double src2, GpuMat& dst)
2011-03-29 07:05:42 +08:00
.. cpp:function:: void gpu::max(const GpuMat& src1, double src2, GpuMat& dst, const Stream& stream)
2011-03-09 06:22:24 +08:00
Computes per-element maximum of two matrices (or a matrix and a scalar).
:param src1: First source matrix.
2011-03-29 07:05:42 +08:00
:param src2: Second source matrix or a scalar to compare ``src1`` elements with.
:param dst: Destination matrix. Will have the same size and type as ``src1``.
:param stream: Stream for the asynchronous version.
See also: :c:func:`max`.