opencv/modules/core/doc/operations_on_arrays.rst

3491 lines
127 KiB
ReStructuredText
Raw Normal View History

Operations on Arrays
====================
.. highlight:: cpp
.. index:: abs
2011-03-08 23:22:24 +01:00
.. _abs:
abs
-------
2011-03-08 23:22:24 +01:00
.. c:function:: MatExpr<...> abs(const Mat& src)
2011-03-08 23:22:24 +01:00
.. c:function:: MatExpr<...> abs(const MatExpr<...>& src)
2011-04-07 22:29:59 +02:00
Computes an absolute value of each matrix element.
2011-04-07 22:29:59 +02:00
:param src: Matrix or matrix expression.
2011-03-03 08:29:55 +01:00
``abs`` is a meta-function that is expanded to one of :func:`absdiff` forms:
2011-04-07 22:29:59 +02:00
* ``C = abs(A-B)`` is equivalent to ``absdiff(A, B, C)``
2011-03-03 08:29:55 +01:00
* ``C = abs(A)`` is equivalent to ``absdiff(A, Scalar::all(0), C)`` .
2011-04-07 22:29:59 +02:00
* ``C = Mat_<Vec<uchar,n> >(abs(A*alpha + beta))`` is equivalent to ``convertScaleAbs(A, C, alpha, beta)``
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
The output matrix has the same size and the same type as the input one (except for the last case, where ``C`` will be ``depth=CV_8U`` ).
2011-04-10 21:37:17 +02:00
See Also: :ref:`MatrixExpressions`,
:func:`absdiff`
2011-03-03 08:29:55 +01:00
.. index:: absdiff
2011-03-08 23:22:24 +01:00
.. _absdiff:
absdiff
-----------
2011-03-08 23:22:24 +01:00
.. c:function:: void absdiff(const Mat& src1, const Mat& src2, Mat& dst)
.. c:function:: void absdiff(const Mat& src1, const Scalar& sc, Mat& dst)
2011-04-07 22:29:59 +02:00
Computes the per-element absolute difference between 2 arrays or between an array and a scalar.
2011-04-07 22:29:59 +02:00
:param src1: The first input array.
:param src2: The second input array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param sc: A scalar. This is the second input parameter.
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param dst: The destination array of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
The functions ``absdiff`` compute:
2011-02-26 12:05:10 +01:00
* absolute difference between two arrays:
2011-02-26 12:05:10 +01:00
.. math::
\texttt{dst} (I) = \texttt{saturate} (| \texttt{src1} (I) - \texttt{src2} (I)|)
2011-04-07 22:29:59 +02:00
* absolute difference between an array and a scalar:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} (| \texttt{src1} (I) - \texttt{sc} |)
2011-04-07 22:29:59 +02:00
where ``I`` is a multi-dimensional index of array elements.
In case of multi-channel arrays, each channel is processed independently.
2011-04-07 22:29:59 +02:00
See Also: :func:`abs`
2011-03-03 08:29:55 +01:00
.. index:: add
2011-03-08 23:22:24 +01:00
.. _add:
add
-------
2011-03-08 23:22:24 +01:00
.. c:function:: void add(const Mat& src1, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void add(const Mat& src1, const Mat& src2, Mat& dst, const Mat& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: void add(const Mat& src1, const Scalar& sc, Mat& dst, const Mat& mask=Mat())
Computes the per-element sum of two arrays or an array and a scalar.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param sc: Scalar. This is the second input parameter.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2011-02-26 12:05:10 +01:00
The functions ``add`` compute:
*
the sum of two arrays:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} ( \texttt{src1} (I) + \texttt{src2} (I)) \quad \texttt{if mask} (I) \ne0
*
2011-04-07 22:29:59 +02:00
the sum of an array and a scalar:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} ( \texttt{src1} (I) + \texttt{sc} ) \quad \texttt{if mask} (I) \ne0
2011-04-07 22:29:59 +02:00
where ``I`` is a multi-dimensional index of array elements.
2011-04-07 22:29:59 +02:00
The first function in the list above can be replaced with matrix expressions: ::
dst = src1 + src2;
dst += src1; // equivalent to add(dst, src1, dst);
2011-04-07 22:29:59 +02:00
In case of multi-channel arrays, each channel is processed independently.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`subtract`,
:func:`addWeighted`,
:func:`scaleAdd`,
:func:`convertScale`,
:ref:`MatrixExpressions`
.. index:: addWeighted
2011-03-08 23:22:24 +01:00
.. _addWeighted:
addWeighted
---------------
2011-03-08 23:22:24 +01:00
.. c:function:: void addWeighted(const Mat& src1, double alpha, const Mat& src2, double beta, double gamma, Mat& dst)
Computes the weighted sum of two arrays.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param alpha: Weight for the first array elements.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param beta: Weight for the second array elements.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param gamma: Scalar added to each sum.
2011-02-26 12:05:10 +01:00
The functions ``addWeighted`` calculate the weighted sum of two arrays as follows:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{saturate} ( \texttt{src1} (I)* \texttt{alpha} + \texttt{src2} (I)* \texttt{beta} + \texttt{gamma} )
2011-04-07 22:29:59 +02:00
where ``I`` is a multi-dimensional index of array elements.
2011-02-26 12:05:10 +01:00
The first function can be replaced with a matrix expression: ::
dst = src1*alpha + src2*beta + gamma;
2011-04-07 22:29:59 +02:00
In case of multi-channel arrays, each channel is processed independently.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`add`,
:func:`subtract`,
:func:`scaleAdd`,
:func:`convertScale`,
:ref:`MatrixExpressions`
.. index:: bitwise_and
2011-03-08 23:22:24 +01:00
.. _bitwise_and_:
bitwise_and
-----------
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_and(const Mat& src1, const Mat& src2, Mat& dst, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_and(const Mat& src1, const Scalar& sc, Mat& dst, const Mat& mask=Mat())
2011-04-07 22:29:59 +02:00
Calculates the per-element bit-wise conjunction of two arrays or an array and a scalar.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param sc: Scalar. This is the second input parameter.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2011-04-07 22:29:59 +02:00
The functions ``bitwise_and`` compute the per-element bit-wise logical conjunction:
*
of two arrays
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \wedge \texttt{src2} (I) \quad \texttt{if mask} (I) \ne0
*
2011-04-07 22:29:59 +02:00
an array and a scalar:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \wedge \texttt{sc} \quad \texttt{if mask} (I) \ne0
2011-04-07 22:29:59 +02:00
In case of floating-point arrays, their machine-specific bit representations (usually IEEE754-compliant) are used for the operation. In case of multi-channel arrays, each channel is processed independently.
2011-04-07 22:29:59 +02:00
See Also: ??
.. index:: bitwise_not
2011-03-08 23:22:24 +01:00
.. _bitwise_not_:
bitwise_not
-----------
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_not(const Mat& src, Mat& dst)
2011-04-07 22:29:59 +02:00
Inverts every bit of an array.
2011-04-10 21:37:17 +02:00
:param src1: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array. It is reallocated to be of the same size and type as ``src`` . See ``Mat::create`` .
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2011-02-26 12:05:10 +01:00
The functions ``bitwise_not`` compute per-element bit-wise inversion of the source array:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \neg \texttt{src} (I)
2011-04-07 22:29:59 +02:00
In case of a floating-point source array, its machine-specific bit representation (usually IEEE754-compliant) is used for the operation. In case of multi-channel arrays, each channel is processed independently.
.. index:: bitwise_or
2011-03-08 23:22:24 +01:00
.. _bitwise_or_:
bitwise_or
----------
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_or(const Mat& src1, const Mat& src2, Mat& dst, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_or(const Mat& src1, const Scalar& sc, Mat& dst, const Mat& mask=Mat())
2011-04-07 22:29:59 +02:00
Calculates the per-element bit-wise disjunction of two arrays or an array and a scalar.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param sc: Scalar. This is the second input parameter.
2011-04-10 21:37:17 +02:00
:param dst: Destination array. It is reallocated to be of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2011-04-07 22:29:59 +02:00
The functions ``bitwise_or`` compute the per-element bit-wise logical disjunction:
*
of two arrays
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \vee \texttt{src2} (I) \quad \texttt{if mask} (I) \ne0
*
2011-04-07 22:29:59 +02:00
an array and a scalar:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \vee \texttt{sc} \quad \texttt{if mask} (I) \ne0
2011-04-07 22:29:59 +02:00
In case of floating-point arrays, their machine-specific bit representations (usually IEEE754-compliant) are used for the operation. In case of multi-channel arrays, each channel is processed independently.
.. index:: bitwise_xor
2011-03-08 23:22:24 +01:00
.. _bitwise_xor_:
bitwise_xor
-----------
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_xor(const Mat& src1, const Mat& src2, Mat& dst, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void bitwise_xor(const Mat& src1, const Scalar& sc, Mat& dst, const Mat& mask=Mat())
2011-04-07 22:29:59 +02:00
Calculates the per-element bit-wise "exclusive or" operation on two arrays or an array and a scalar.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param sc: Scalar. This is the second input parameter.
2011-04-10 21:37:17 +02:00
:param dst: Destination array. It is reallocated to be of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask, 8-bit single channel array, that specifies elements of the destination array to be changed.
2011-04-07 22:29:59 +02:00
The functions ``bitwise_xor`` compute the per-element bit-wise logical "exclusive or" operation:
2011-03-08 23:22:24 +01:00
* on two arrays
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \oplus \texttt{src2} (I) \quad \texttt{if mask} (I) \ne0
2011-04-07 22:29:59 +02:00
* an array and a scalar:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{src1} (I) \oplus \texttt{sc} \quad \texttt{if mask} (I) \ne0
2011-04-07 22:29:59 +02:00
In case of floating-point arrays, their machine-specific bit representations (usually IEEE754-compliant) are used for the operation. In case of multi-channel arrays, each channel is processed independently.
.. index:: calcCovarMatrix
2011-03-08 23:22:24 +01:00
.. _calcCovarMatrix:
calcCovarMatrix
2011-03-08 23:22:24 +01:00
---------------
.. c:function:: void calcCovarMatrix( const Mat* samples, int nsamples, Mat& covar, Mat& mean, int flags, int ctype=CV_64F)
2011-03-08 23:22:24 +01:00
.. c:function:: void calcCovarMatrix( const Mat& samples, Mat& covar, Mat& mean, int flags, int ctype=CV_64F)
2011-04-07 22:29:59 +02:00
Calculates the covariance matrix of a set of vectors.
2011-04-07 22:29:59 +02:00
:param samples: Samples stored either as separate matrices or as rows/columns of a single matrix.
2011-04-07 22:29:59 +02:00
:param nsamples: The number of samples when they are stored separately.
2011-04-07 22:29:59 +02:00
:param covar: The output covariance matrix of the type= ``ctype`` and square size.
2011-04-07 22:29:59 +02:00
:param mean: The input or output (depending on the flags) array - the mean (average) vector of the input vectors.
2011-02-26 12:05:10 +01:00
2011-04-07 22:29:59 +02:00
:param flags: Operation flags, a combination of the following values:
2011-02-26 12:05:10 +01:00
* **CV_COVAR_SCRAMBLED** The output covariance matrix is calculated as:
.. math::
2011-02-26 12:05:10 +01:00
2011-03-03 08:29:55 +01:00
\texttt{scale} \cdot [ \texttt{vects} [0]- \texttt{mean} , \texttt{vects} [1]- \texttt{mean} ,...]^T \cdot [ \texttt{vects} [0]- \texttt{mean} , \texttt{vects} [1]- \texttt{mean} ,...],
2011-04-07 22:29:59 +02:00
The covariance matrix will be :math:`\texttt{nsamples} \times \texttt{nsamples}` . Such an unusual covariance matrix is used for fast PCA of a set of very large vectors (see, for example, the EigenFaces technique for face recognition). Eigenvalues of this "scrambled" matrix match the eigenvalues of the true covariance matrix. The "true" eigenvectors can be easily calculated from the eigenvectors of the "scrambled" covariance matrix.
2011-02-26 12:05:10 +01:00
* **CV_COVAR_NORMAL** The output covariance matrix is calculated as:
.. math::
2011-03-03 08:29:55 +01:00
\texttt{scale} \cdot [ \texttt{vects} [0]- \texttt{mean} , \texttt{vects} [1]- \texttt{mean} ,...] \cdot [ \texttt{vects} [0]- \texttt{mean} , \texttt{vects} [1]- \texttt{mean} ,...]^T,
2011-04-07 22:29:59 +02:00
``covar`` will be a square matrix of the same size as the total number of elements in each input vector. One and only one of ``CV_COVAR_SCRAMBLED`` and ``CV_COVAR_NORMAL`` must be specified.
2011-04-07 22:29:59 +02:00
* **CV_COVAR_USE_AVG** If the flag is specified, the function does not calculate ``mean`` from the input vectors but, instead, uses the passed ``mean`` vector. This is useful if ``mean`` has been pre-computed or known in advance, or if the covariance matrix is calculated by parts. In this case, ``mean`` is not a mean vector of the input sub-set of vectors but rather the mean vector of the whole set.
2011-04-07 22:29:59 +02:00
* **CV_COVAR_SCALE** If the flag is specified, the covariance matrix is scaled. In the "normal" mode, ``scale`` is ``1./nsamples`` . In the "scrambled" mode, ``scale`` is the reciprocal of the total number of elements in each input vector. By default (if the flag is not specified), the covariance matrix is not scaled ( ``scale=1`` ).
2011-04-07 22:29:59 +02:00
* **CV_COVAR_ROWS** [Only useful in the second variant of the function] If the flag is specified, all the input vectors are stored as rows of the ``samples`` matrix. ``mean`` should be a single-row vector in this case.
2011-04-07 22:29:59 +02:00
* **CV_COVAR_COLS** [Only useful in the second variant of the function] If the flag is specified, all the input vectors are stored as columns of the ``samples`` matrix. ``mean`` should be a single-column vector in this case.
2011-04-07 22:29:59 +02:00
The functions ``calcCovarMatrix`` calculate the covariance matrix and, optionally, the mean vector of the set of input vectors.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`PCA`,
:func:`mulTransposed`,
:func:`Mahalanobis`
2011-03-03 08:29:55 +01:00
.. index:: cartToPolar
2011-03-08 23:22:24 +01:00
.. _cartToPolar:
cartToPolar
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: void cartToPolar(const Mat& x, const Mat& y, Mat& magnitude, Mat& angle, bool angleInDegrees=false)
2011-04-07 22:29:59 +02:00
Calculates the magnitude and angle of 2D vectors.
2011-04-07 22:29:59 +02:00
:param x: The array of x-coordinates. This must be a single-precision or double-precision floating-point array.
2011-04-07 22:29:59 +02:00
:param y: The array of y-coordinates. It must have the same size and same type as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param magnitude: The destination array of magnitudes of the same size and type as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param angle: The destination array of angles of the same size and type as ``x`` . The angles are measured in radians :math:`(0` to :math:`2 \pi )` or in degrees (0 to 360 degrees).
2011-04-07 22:29:59 +02:00
:param angleInDegrees: The flag indicating whether the angles are measured in radians, which is a default mode, or in degrees.
2011-04-07 22:29:59 +02:00
The function ``cartToPolar`` calculates either the magnitude, angle, or both for every 2D vector (x(I),y(I)):
.. math::
2011-03-08 23:22:24 +01:00
\begin{array}{l} \texttt{magnitude} (I)= \sqrt{\texttt{x}(I)^2+\texttt{y}(I)^2} , \\ \texttt{angle} (I)= \texttt{atan2} ( \texttt{y} (I), \texttt{x} (I))[ \cdot180 / \pi ] \end{array}
2011-02-26 12:05:10 +01:00
The angles are calculated with
2011-04-07 22:29:59 +02:00
:math:`\sim\,0.3^\circ` accuracy. For the point (0,0) , the angle is set to 0.
.. index:: checkRange
2011-03-08 23:22:24 +01:00
.. _checkRange:
checkRange
2011-03-08 23:22:24 +01:00
----------
2011-03-08 23:22:24 +01:00
.. c:function:: bool checkRange(const Mat& src, bool quiet=true, Point* pos=0, double minVal=-DBL_MAX, double maxVal=DBL_MAX)
Checks every element of an input array for invalid values.
2011-04-07 22:29:59 +02:00
:param src: The array to check.
2011-04-07 22:29:59 +02:00
:param quiet: The flag indicating whether the functions quietly return false when the array elements are out of range or they throw an exception.
2011-04-07 22:29:59 +02:00
:param pos: An optional output parameter, where the position of the first outlier is stored. In the second function ``pos`` , when not NULL, must be a pointer to array of ``src.dims`` elements.
2011-04-07 22:29:59 +02:00
:param minVal: The inclusive lower boundary of valid values range.
2011-04-07 22:29:59 +02:00
:param maxVal: The exclusive upper boundary of valid values range.
2011-04-07 22:29:59 +02:00
The functions ``checkRange`` check that every array element is neither NaN nor
:math:`\pm \infty` . When ``minVal < -DBL_MAX`` and ``maxVal < DBL_MAX`` , the functions also check that each value is between ``minVal`` and ``maxVal`` . In case of multi-channel arrays, each channel is processed independently.
2011-02-26 12:05:10 +01:00
If some values are out of range, position of the first outlier is stored in ``pos`` (when
2011-04-07 22:29:59 +02:00
:math:`\texttt{pos}\ne0` ). Then, the functions either return false (when ``quiet=true`` ) or throw an exception.
.. index:: compare
2011-03-08 23:22:24 +01:00
.. _compare:
2011-03-08 23:22:24 +01:00
compare
-------
2011-03-08 23:22:24 +01:00
.. c:function:: void compare(const Mat& src1, const Mat& src2, Mat& dst, int cmpop)
2011-03-08 23:22:24 +01:00
.. c:function:: void compare(const Mat& src1, double value, Mat& dst, int cmpop)
2011-04-07 22:29:59 +02:00
Performs the per-element comparison of two arrays or an array and scalar value.
2011-04-07 22:29:59 +02:00
:param src1: The first source array.
2011-04-07 22:29:59 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param value: Scalar value to compare each array element with.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size as ``src1`` and type= ``CV_8UC1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param cmpop: Flag specifying the relation between the elements to be checked.
2011-03-03 08:29:55 +01:00
* **CMP_EQ** :math:`\texttt{src1}(I) = \texttt{src2}(I)` or :math:`\texttt{src1}(I) = \texttt{value}`
* **CMP_GT** :math:`\texttt{src1}(I) > \texttt{src2}(I)` or :math:`\texttt{src1}(I) > \texttt{value}`
* **CMP_GE** :math:`\texttt{src1}(I) \geq \texttt{src2}(I)` or :math:`\texttt{src1}(I) \geq \texttt{value}`
* **CMP_LT** :math:`\texttt{src1}(I) < \texttt{src2}(I)` or :math:`\texttt{src1}(I) < \texttt{value}`
* **CMP_LE** :math:`\texttt{src1}(I) \leq \texttt{src2}(I)` or :math:`\texttt{src1}(I) \leq \texttt{value}`
* **CMP_NE** :math:`\texttt{src1}(I) \ne \texttt{src2}(I)` or :math:`\texttt{src1}(I) \ne \texttt{value}`
2011-04-07 22:29:59 +02:00
The functions ``compare`` compare each element of ``src1`` with the corresponding element of ``src2`` or with the real scalar ``value`` . When the comparison result is true, the corresponding element of destination array is set to 255. Otherwise, it is set to 0:
2011-03-03 08:29:55 +01:00
* ``dst(I) = src1(I) cmpop src2(I) ? 255 : 0``
* ``dst(I) = src1(I) cmpop value ? 255 : 0``
The comparison operations can be replaced with the equivalent matrix expressions: ::
Mat dst1 = src1 >= src2;
Mat dst2 = src1 < 8;
...
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`checkRange`,
:func:`min`,
:func:`max`,
:func:`threshold`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: completeSymm
2011-03-08 23:22:24 +01:00
.. _completeSymm:
completeSymm
2011-03-08 23:22:24 +01:00
------------
.. c:function:: void completeSymm(Mat& mtx, bool lowerToUpper=false)
Copies the lower or the upper half of a square matrix to another half.
2011-04-07 22:29:59 +02:00
:param mtx: Input-output floating-point square matrix.
2011-04-07 22:29:59 +02:00
:param lowerToUpper: If true, the lower half is copied to the upper half. Otherwise, the upper half is copied to the lower half.
2011-04-07 22:29:59 +02:00
The function ``completeSymm`` copies the lower half of a square matrix to its another half. The matrix diagonal remains unchanged:
*
2011-02-26 12:05:10 +01:00
:math:`\texttt{mtx}_{ij}=\texttt{mtx}_{ji}` for
2011-03-03 08:29:55 +01:00
:math:`i > j` if ``lowerToUpper=false``
*
2011-02-26 12:05:10 +01:00
:math:`\texttt{mtx}_{ij}=\texttt{mtx}_{ji}` for
2011-03-03 08:29:55 +01:00
:math:`i < j` if ``lowerToUpper=true``
2011-04-10 21:37:17 +02:00
See Also: :func:`flip`,
:func:`transpose`
2011-03-03 08:29:55 +01:00
.. index:: convertScaleAbs
2011-03-08 23:22:24 +01:00
.. _convertScaleAbs:
convertScaleAbs
2011-03-08 23:22:24 +01:00
---------------
.. c:function:: void convertScaleAbs(const Mat& src, Mat& dst, double alpha=1, double beta=0)
2011-04-07 22:29:59 +02:00
Scales, computes absolute values, and converts the result to 8-bit.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array.
2011-04-10 21:37:17 +02:00
:param alpha: Optional scale factor.
2011-04-10 21:37:17 +02:00
:param beta: Optional delta added to the scaled values.
2011-04-07 22:29:59 +02:00
On each element of the input array, the function ``convertScaleAbs`` performs three operations sequentially: scaling, taking an absolute value, conversion to an unsigned 8-bit type:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{saturate\_cast<uchar>} (| \texttt{src} (I)* \texttt{alpha} + \texttt{beta} |)
2011-04-07 22:29:59 +02:00
In case of multi-channel arrays, the function processes each channel independently. When the output is not 8-bit, the operation can be emulated by calling the ``Mat::convertTo`` method (or by using matrix expressions) and then by computing an absolute value of the result. For example: ::
Mat_<float> A(30,30);
randu(A, Scalar(-100), Scalar(100));
Mat_<float> B = A*5 + 3;
B = abs(B);
// Mat_<float> B = abs(A*5+3) will also do the job,
// but it will allocate a temporary matrix
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`Mat::convertTo`,
:func:`abs`
2011-03-03 08:29:55 +01:00
.. index:: countNonZero
2011-03-08 23:22:24 +01:00
.. _countNonZero:
countNonZero
2011-03-08 23:22:24 +01:00
------------
2011-03-08 23:22:24 +01:00
.. c:function:: int countNonZero( const Mat& mtx )
Counts non-zero array elements.
2011-04-07 22:29:59 +02:00
:param mtx: Single-channel array.
2011-04-07 22:29:59 +02:00
The function ``cvCountNonZero`` returns the number of non-zero elements in ``mtx`` :
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\sum _{I: \; \texttt{mtx} (I) \ne0 } 1
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`mean`,
:func:`meanStdDev`,
:func:`norm`,
:func:`minMaxLoc`,
:func:`calcCovarMatrix`
2011-03-03 08:29:55 +01:00
.. index:: cubeRoot
2011-03-08 23:22:24 +01:00
.. _cubeRoot:
cubeRoot
2011-03-08 23:22:24 +01:00
--------
.. c:function:: float cubeRoot(float val)
2011-04-07 22:29:59 +02:00
Computes the cube root of an argument.
2011-04-07 22:29:59 +02:00
:param val: A function argument.
2011-04-07 22:29:59 +02:00
The function ``cubeRoot`` computes :math:`\sqrt[3]{\texttt{val}}`. Negative arguments are handled correctly. *NaN*
2011-03-03 08:29:55 +01:00
and :math:`\pm\infty` are not handled. The accuracy approaches the maximum possible accuracy for single-precision data.
.. index:: cvarrToMat
2011-03-08 23:22:24 +01:00
.. _cvarrToMat:
cvarrToMat
2011-03-08 23:22:24 +01:00
----------
.. c:function:: Mat cvarrToMat(const CvArr* src, bool copyData=false, bool allowND=true, int coiMode=0)
2011-04-07 22:29:59 +02:00
Converts ``CvMat``, ``IplImage`` , or ``CvMatND`` to ``Mat``.
2011-04-07 22:29:59 +02:00
:param src: The source ``CvMat``, ``IplImage`` , or ``CvMatND`` .
2011-03-03 08:29:55 +01:00
2011-04-07 22:29:59 +02:00
:param copyData: When it is false (default value), no data is copied and only the new header is created. In this case, the original array should not be deallocated while the new matrix header is used. If the parameter is true, all the data is copied and you may deallocate the original array right after the conversion.
2011-04-07 22:29:59 +02:00
:param allowND: When it is true (default value), ``CvMatND`` is converted to ``Mat`` , if it is possible (for example, when the data is contiguous). If it is not possible, or when the parameter is false, the function will report an error.
2011-02-26 12:05:10 +01:00
:param coiMode: The parameter specifies how the IplImage COI (when set) is handled.
2011-04-07 22:29:59 +02:00
* If ``coiMode=0`` , the function reports an error if COI is set.
2011-02-26 12:05:10 +01:00
2011-04-07 22:29:59 +02:00
* If ``coiMode=1`` , the function never reports an error. Instead, it returns the header to the whole original image and you will have to check and process COI manually. See :func:`extractImageCOI` .
2011-02-26 12:05:10 +01:00
2011-04-07 22:29:59 +02:00
The function ``cvarrToMat`` converts ``CvMat``, ``IplImage`` , or ``CvMatND`` header to
2011-02-26 12:05:10 +01:00
:func:`Mat` header, and optionally duplicates the underlying data. The constructed header is returned by the function.
2011-04-07 22:29:59 +02:00
When ``copyData=false`` , the conversion is done really fast (in O(1) time) and the newly created matrix header will have ``refcount=0`` , which means that no reference counting is done for the matrix data. In this case, you have to preserve the data until the new header is destructed. Otherwise, when ``copyData=true`` , the new buffer is allocated and managed as if you created a new matrix from scratch and copied the data there. That is, ``cvarrToMat(src, true) :math:`\sim` cvarrToMat(src, false).clone()`` (assuming that COI is not set). The function provides a uniform way of supporting
2011-03-08 23:22:24 +01:00
``CvArr`` paradigm in the code that is migrated to use new-style data structures internally. The reverse transformation, from
2011-02-26 12:05:10 +01:00
:func:`Mat` to
2011-03-08 23:22:24 +01:00
``CvMat`` or
2011-04-07 22:29:59 +02:00
``IplImage`` can be done by a simple assignment: ::
2011-02-26 12:05:10 +01:00
CvMat* A = cvCreateMat(10, 10, CV_32F);
cvSetIdentity(A);
IplImage A1; cvGetImage(A, &A1);
Mat B = cvarrToMat(A);
Mat B1 = cvarrToMat(&A1);
IplImage C = B;
CvMat C1 = B1;
// now A, A1, B, B1, C and C1 are different headers
// for the same 10x10 floating-point array.
2011-04-07 22:29:59 +02:00
// note that you will need to use "&"
// to pass C & C1 to OpenCV functions, for example:
printf("
Normally, the function is used to convert an old-style 2D array (
2011-03-08 23:22:24 +01:00
``CvMat`` or
2011-04-07 22:29:59 +02:00
``IplImage`` ) to ``Mat`` . However, the function can also take
``CvMatND`` as an input and create
:func:`Mat` for it, if it is possible. And, for ``CvMatND A`` , it is possible if and only if ``A.dim[i].size*A.dim.step[i] == A.dim.step[i-1]`` for all or for all but one ``i, 0 < i < A.dims`` . That is, the matrix data should be continuous or it should be representable as a sequence of continuous matrices. By using this function in this way, you can process
``CvMatND`` using an arbitrary element-wise function. But for more complex operations, such as filtering functions, it will not work, and you need to convert
2011-03-08 23:22:24 +01:00
``CvMatND`` to
2011-02-26 12:05:10 +01:00
:func:`MatND` using the corresponding constructor of the latter.
2011-04-07 22:29:59 +02:00
The last parameter, ``coiMode`` , specifies how to deal with an image with COI set. By default, it is 0 and the function reports an error when an image with COI comes in. And ``coiMode=1`` means that no error is signalled. You have to check COI presence and handle it manually. The modern structures, such as
2011-02-26 12:05:10 +01:00
:func:`Mat` and
2011-04-07 22:29:59 +02:00
:func:`MatND` do not support COI natively. To process an individual channel of a new-style array, you need either to organize a loop over the array (for example, using matrix iterators) where the channel of interest will be processed, or extract the COI using
2011-02-26 12:05:10 +01:00
:func:`mixChannels` (for new-style arrays) or
2011-04-07 22:29:59 +02:00
:func:`extractImageCOI` (for old-style arrays), process this individual channel, and insert it back to the destination array if needed (using
2011-02-26 12:05:10 +01:00
:func:`mixChannel` or
:func:`insertImageCOI` , respectively).
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`cvGetImage`,
:func:`cvGetMat`,
:func:`cvGetMatND`,
:func:`extractImageCOI`,
:func:`insertImageCOI`,
:func:`mixChannels`
2011-03-03 08:29:55 +01:00
.. index:: dct
2011-03-08 23:22:24 +01:00
.. _dct:
dct
-------
2011-03-08 23:22:24 +01:00
.. c:function:: void dct(const Mat& src, Mat& dst, int flags=0)
2011-04-10 21:37:17 +02:00
Performs a forward or inverse discrete Cosine transform of 1D or 2D array.
2011-04-10 21:37:17 +02:00
:param src: The source floating-point array.
2011-04-10 21:37:17 +02:00
:param dst: The destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: Transformation flags, a combination of the following values:
2011-04-10 21:37:17 +02:00
* **DCT_INVERSE** Perform an inverse 1D or 2D transform instead of the default forward transform.
2011-04-10 21:37:17 +02:00
* **DCT_ROWS** Perform a forward or inverse transform of every individual row of the input matrix. This flag enables you to transform multiple vectors simultaneously and can be used to decrease the overhead (which is sometimes several times larger than the processing itself) to perform 3D and higher-dimensional transforms and so forth.
2011-04-10 21:37:17 +02:00
The function ``dct`` performs a forward or inverse discrete Cosine transform (DCT) of a 1D or 2D floating-point array:
2011-04-10 21:37:17 +02:00
* Forward Cosine transform of a 1D vector of
2011-02-26 12:05:10 +01:00
:math:`N` elements:
.. math::
2011-02-26 12:05:10 +01:00
Y = C^{(N)} \cdot X
where
.. math::
2011-02-26 12:05:10 +01:00
C^{(N)}_{jk}= \sqrt{\alpha_j/N} \cos \left ( \frac{\pi(2k+1)j}{2N} \right )
2011-02-26 12:05:10 +01:00
and
:math:`\alpha_0=1`,:math:`\alpha_j=2` for
:math:`j > 0` .
2011-04-10 21:37:17 +02:00
* Inverse Cosine transform of a 1D vector of N elements:
.. math::
2011-02-26 12:05:10 +01:00
X = \left (C^{(N)} \right )^{-1} \cdot Y = \left (C^{(N)} \right )^T \cdot Y
2011-02-26 12:05:10 +01:00
(since
2011-04-10 21:37:17 +02:00
:math:`C^{(N)}` is an orthogonal matrix,
2011-02-26 12:05:10 +01:00
:math:`C^{(N)} \cdot \left(C^{(N)}\right)^T = I` )
2011-04-10 21:37:17 +02:00
* Forward Cosine transform of 2D
2011-02-26 12:05:10 +01:00
:math:`M \times N` matrix:
.. math::
2011-02-26 12:05:10 +01:00
Y = C^{(N)} \cdot X \cdot \left (C^{(N)} \right )^T
2011-04-10 21:37:17 +02:00
* Inverse Cosine transform of a 2D vector of
2011-02-26 12:05:10 +01:00
:math:`M \times N` elements:
.. math::
2011-02-26 12:05:10 +01:00
X = \left (C^{(N)} \right )^T \cdot X \cdot C^{(N)}
The function chooses the mode of operation by looking at the flags and size of the input array:
*
2011-04-10 21:37:17 +02:00
If ``(flags & DCT_INVERSE) == 0`` , the function does a forward 1D or 2D transform. Otherwise, it is an inverse 1D or 2D transform.
*
2011-04-10 21:37:17 +02:00
If ``(flags & DCT_ROWS) :math:`\ne` 0`` , the function performs a 1D transform of each row.
*
2011-04-10 21:37:17 +02:00
If the array is a single column or a single row, the function performs a 1D transform.
*
2011-04-10 21:37:17 +02:00
If none of the above is true, the function performs a 2D transform.
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
**Note**
:
Currently ``dct`` supports even-size arrays (2, 4, 6 ...). For data analysis and approximation, you can pad the array when necessary.
2011-04-10 21:37:17 +02:00
Also, the function performance depends very much, and not monotonically, on the array size (see
:func:`getOptimalDFTSize` ). In the current implementation DCT of a vector of size ``N`` is computed via DFT of a vector of size ``N/2`` . Thus, the optimal DCT size
2011-02-26 12:05:10 +01:00
:math:`\texttt{N}^*\geq\texttt{N}` can be computed as: ::
size_t getOptimalDCTSize(size_t N) { return 2*getOptimalDFTSize((N+1)/2); }
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`dft`,
:func:`getOptimalDFTSize`,
:func:`idct`
2011-03-03 08:29:55 +01:00
.. index:: dft
2011-03-08 23:22:24 +01:00
.. _dft:
dft
2011-03-08 23:22:24 +01:00
---
.. c:function:: void dft(const Mat& src, Mat& dst, int flags=0, int nonzeroRows=0)
2011-04-10 21:37:17 +02:00
Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array.
2011-04-10 21:37:17 +02:00
:param src: Source array that could be real or complex.
2011-04-10 21:37:17 +02:00
:param dst: Destination array whose size and type depends on the ``flags`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: Transformation flags representing a combination of the following values:
2011-04-10 21:37:17 +02:00
* **DFT_INVERSE** Perform an inverse 1D or 2D transform instead of the default forward transform.
2011-04-10 21:37:17 +02:00
* **DFT_SCALE** Scale the result: divide it by the number of array elements. Normally, it is combined with ``DFT_INVERSE`` . .
* **DFT_ROWS** Perform a forward or inverse transform of every individual row of the input matrix. This flag enables you to transform multiple vectors simultaneously and can be used to decrease the overhead (which is sometimes several times larger than the processing itself) to perform 3D and higher-dimensional transforms and so forth.
2011-04-10 21:37:17 +02:00
* **DFT_COMPLEX_OUTPUT** Perform a forward transformation of 1D or 2D real array. The result, though being a complex array, has complex-conjugate symmetry ( *CCS* ).?? See the description below for details. Such an array can be packed into a real array of the same size as input, which is the fastest option and which is what the function does by default. However, you may wish to get a full complex array (for simpler spectrum analysis, and so on). Pass the flag to enable the function to produce a full-size complex output array.
2011-04-10 21:37:17 +02:00
* **DFT_REAL_OUTPUT** Perform an inverse transformation of 1D or 2D complex array. The result is normally a complex array of the same size. However, if the source array has conjugate-complex symmetry (for example, it is a result of forward transformation with ``DFT_COMPLEX_OUTPUT`` flag), the output is a real array. While the function itself does not check whether the input is symmetrical or not, you can pass the flag and then the function will assume the symmetry and produce the real output array. Note that when the input is packed into a real array and inverse transformation is executed, the function treats the input as a packed complex-conjugate symmetrical array. So, the output will also be a real array.
2011-04-10 21:37:17 +02:00
:param nonzeroRows: When the parameter :math:`\ne 0` , the function assumes that only the first ``nonzeroRows`` rows of the input array ( ``DFT_INVERSE`` is not set) or only the first ``nonzeroRows`` of the output array ( ``DFT_INVERSE`` is set) contain non-zeros. Thus, the function can handle the rest of the rows more efficiently and save some time. This technique is very useful for computing array cross-correlation or convolution using DFT.
2011-02-26 12:05:10 +01:00
Forward Fourier transform of 1D vector of N elements:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
Y = F^{(N)} \cdot X,
2011-02-26 12:05:10 +01:00
where
:math:`F^{(N)}_{jk}=\exp(-2\pi i j k/N)` and
:math:`i=\sqrt{-1}` Inverse Fourier transform of 1D vector of N elements:
.. math::
2011-02-26 12:05:10 +01:00
\begin{array}{l} X'= \left (F^{(N)} \right )^{-1} \cdot Y = \left (F^{(N)} \right )^* \cdot y \\ X = (1/N) \cdot X, \end{array}
2011-02-26 12:05:10 +01:00
where
:math:`F^*=\left(\textrm{Re}(F^{(N)})-\textrm{Im}(F^{(N)})\right)^T` Forward Fourier transform of 2D vector of
:math:`M \times N` elements:
.. math::
2011-02-26 12:05:10 +01:00
Y = F^{(M)} \cdot X \cdot F^{(N)}
2011-02-26 12:05:10 +01:00
Inverse Fourier transform of 2D vector of
:math:`M \times N` elements:
.. math::
2011-02-26 12:05:10 +01:00
\begin{array}{l} X'= \left (F^{(M)} \right )^* \cdot Y \cdot \left (F^{(N)} \right )^* \\ X = \frac{1}{M \cdot N} \cdot X' \end{array}
2011-04-10 21:37:17 +02:00
In case of real (single-channel) data, the packed format is called
*CCS*
2011-04-10 21:37:17 +02:00
(complex-conjugate-symmetrical). It was borrowed from IPL and used to represent the result of a forward Fourier transform or input for an inverse Fourier transform:
.. math::
2011-02-26 12:05:10 +01:00
\begin{bmatrix} Re Y_{0,0} & Re Y_{0,1} & Im Y_{0,1} & Re Y_{0,2} & Im Y_{0,2} & \cdots & Re Y_{0,N/2-1} & Im Y_{0,N/2-1} & Re Y_{0,N/2} \\ Re Y_{1,0} & Re Y_{1,1} & Im Y_{1,1} & Re Y_{1,2} & Im Y_{1,2} & \cdots & Re Y_{1,N/2-1} & Im Y_{1,N/2-1} & Re Y_{1,N/2} \\ Im Y_{1,0} & Re Y_{2,1} & Im Y_{2,1} & Re Y_{2,2} & Im Y_{2,2} & \cdots & Re Y_{2,N/2-1} & Im Y_{2,N/2-1} & Im Y_{1,N/2} \\ \hdotsfor{9} \\ Re Y_{M/2-1,0} & Re Y_{M-3,1} & Im Y_{M-3,1} & \hdotsfor{3} & Re Y_{M-3,N/2-1} & Im Y_{M-3,N/2-1}& Re Y_{M/2-1,N/2} \\ Im Y_{M/2-1,0} & Re Y_{M-2,1} & Im Y_{M-2,1} & \hdotsfor{3} & Re Y_{M-2,N/2-1} & Im Y_{M-2,N/2-1}& Im Y_{M/2-1,N/2} \\ Re Y_{M/2,0} & Re Y_{M-1,1} & Im Y_{M-1,1} & \hdotsfor{3} & Re Y_{M-1,N/2-1} & Im Y_{M-1,N/2-1}& Re Y_{M/2,N/2} \end{bmatrix}
2011-04-10 21:37:17 +02:00
In case of 1D transform of a real vector, the output looks like the first row of the matrix above.
2011-04-10 21:37:17 +02:00
So, the function chooses an operation mode depending on the flags and size of the input array:
2011-04-10 21:37:17 +02:00
* If ``DFT_ROWS`` is set or the input array has a single row or single column, the function performs a 1D forward or inverse transform of each row of a matrix when ``DFT_ROWS`` is set. Otherwise, it performs a 2D transform.
2011-04-10 21:37:17 +02:00
* If the input array is real and ``DFT_INVERSE`` is not set, the function performs a forward 1D or 2D transform:
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
* When ``DFT_COMPLEX_OUTPUT`` is set, the output is a complex matrix of the same size as input.
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
* When ``DFT_COMPLEX_OUTPUT`` is not set, the output is a real matrix of the same size as input. In case of 2D transform, it uses the packed format as shown above. In case of a single 1D transform, it looks like the first row of the matrix above. In case of multiple 1D transforms (when using the ``DCT_ROWS`` flag), each row of the output matrix looks like the first row of the matrix above.
2011-04-10 21:37:17 +02:00
* If the input array is complex and either ``DFT_INVERSE`` or ``DFT_REAL_OUTPUT`` are not set, the output is a complex array of the same size as input. The function performs a forward or inverse 1D or 2D transform of the whole input array or each row of the input array independently, depending on the flags ``DFT_INVERSE`` and ``DFT_ROWS``.
2011-04-10 21:37:17 +02:00
* When ``DFT_INVERSE`` is set and the input array is real, or it is complex but ``DFT_REAL_OUTPUT`` is set, the output is a real array of the same size as input. The function performs a 1D or 2D inverse transformation of the whole input array or each individual row, depending on the flags ``DFT_INVERSE`` and ``DFT_ROWS``.
2011-04-10 21:37:17 +02:00
If ``DFT_SCALE`` is set, the scaling is done after the transformation.
2011-02-26 12:05:10 +01:00
Unlike
2011-04-10 21:37:17 +02:00
:func:`dct` , the function supports arrays of arbitrary size. But only those arrays are processed efficiently, whose sizes can be factorized in a product of small prime numbers (2, 3, and 5 in the current implementation). Such an efficient DFT size can be computed using the
2011-02-26 12:05:10 +01:00
:func:`getOptimalDFTSize` method.
2011-04-10 21:37:17 +02:00
Here is a sample illustrating how to compute a DFT-based convolution of two 2D real arrays: ::
void convolveDFT(const Mat& A, const Mat& B, Mat& C)
{
// reallocate the output array if needed
C.create(abs(A.rows - B.rows)+1, abs(A.cols - B.cols)+1, A.type());
Size dftSize;
// compute the size of DFT transform
dftSize.width = getOptimalDFTSize(A.cols + B.cols - 1);
dftSize.height = getOptimalDFTSize(A.rows + B.rows - 1);
2011-02-26 12:05:10 +01:00
// allocate temporary buffers and initialize them with 0's
Mat tempA(dftSize, A.type(), Scalar::all(0));
Mat tempB(dftSize, B.type(), Scalar::all(0));
2011-02-26 12:05:10 +01:00
// copy A and B to the top-left corners of tempA and tempB, respectively
Mat roiA(tempA, Rect(0,0,A.cols,A.rows));
A.copyTo(roiA);
Mat roiB(tempB, Rect(0,0,B.cols,B.rows));
B.copyTo(roiB);
2011-02-26 12:05:10 +01:00
// now transform the padded A & B in-place;
// use "nonzeroRows" hint for faster processing
dft(tempA, tempA, 0, A.rows);
dft(tempB, tempB, 0, B.rows);
2011-02-26 12:05:10 +01:00
// multiply the spectrums;
// the function handles packed spectrum representations well
mulSpectrums(tempA, tempB, tempA);
2011-02-26 12:05:10 +01:00
// transform the product back from the frequency domain.
// Even though all the result rows will be non-zero,
2011-04-10 21:37:17 +02:00
// you need only the first C.rows of them, and thus you
// pass nonzeroRows == C.rows
dft(tempA, tempA, DFT_INVERSE + DFT_SCALE, C.rows);
2011-02-26 12:05:10 +01:00
// now copy the result back to C.
tempA(Rect(0, 0, C.cols, C.rows)).copyTo(C);
2011-02-26 12:05:10 +01:00
// all the temporary buffers will be deallocated automatically
}
2011-04-10 21:37:17 +02:00
To optimize this sample, consider the following approaches:
*
2011-04-10 21:37:17 +02:00
Since :math:`\texttt{nonzeroRows} \ne 0` is passed to the forward transform calls and since ``A`` / ``B`` is copied to the top-left corners of ``tempA`` / ``tempB`` , respectively, it is not necessary to clear the whole ``tempA`` and ``tempB`` . It is only necessary to clear the ``tempA.cols - A.cols`` ( ``tempB.cols - B.cols`` ) rightmost columns of the matrices.
2011-04-10 21:37:17 +02:00
* This DFT-based convolution does not have to be applied to the whole big arrays, especially if ``B`` is significantly smaller than ``A`` or vice versa. Instead, you can compute convolution by parts. To do this, you need to split the destination array ``C`` into multiple tiles. For each tile, estimate which parts of ``A`` and ``B`` are required to compute convolution in this tile. If the tiles in ``C`` are too small, the speed will decrease a lot because of repeated work. In the ultimate case, when each tile in ``C`` is a single pixel, the algorithm becomes equivalent to the naive convolution algorithm. If the tiles are too big, the temporary arrays ``tempA`` and ``tempB`` become too big and there is also a slowdown because of bad cache locality. So, there is an optimal tile size somewhere in the middle.
*
2011-04-10 21:37:17 +02:00
If different tiles in ``C`` can be computed in parallel and, thus, the convolution is done by parts, the loop can be threaded.
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
All of the above improvements have been implemented in :func:`matchTemplate` and :func:`filter2D` . Therefore, by using them, you can get the performance even better than with the above theoretically optimal implementation. Though, those two functions actually compute cross-correlation, not convolution, so you need to "flip" the kernel or the image around the center using :func:`flip` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`dct`,
:func:`getOptimalDFTSize`,
:func:`mulSpectrums`,
:func:`filter2D`,
:func:`matchTemplate`,
:func:`flip`,
:func:`cartToPolar`,
:func:`magnitude`,
:func:`phase`
2011-03-03 08:29:55 +01:00
.. index:: divide
2011-03-08 23:22:24 +01:00
.. _divide:
divide
----------
2011-03-08 23:22:24 +01:00
.. c:function:: void divide(const Mat& src1, const Mat& src2, Mat& dst, double scale=1)
2011-03-08 23:22:24 +01:00
.. c:function:: void divide(double scale, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void divide(const MatND& src1, const MatND& src2, MatND& dst, double scale=1)
2011-03-08 23:22:24 +01:00
.. c:function:: void divide(double scale, const MatND& src2, MatND& dst)
Performs per-element division of two arrays or a scalar by an array.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param scale: Scalar factor.
2011-04-10 21:37:17 +02:00
:param dst: The destination array of the same size and type as ``src2`` .
2011-03-03 08:29:55 +01:00
The functions ``divide`` divide one array by another:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst(I) = saturate(src1(I)*scale/src2(I))}
2011-02-26 12:05:10 +01:00
or a scalar by array, when there is no ``src1`` :
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst(I) = saturate(scale/src2(I))}
2011-04-10 21:37:17 +02:00
The result has the same type as ``src1`` . When ``src2(I)=0``,``dst(I)=0`` too.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`multiply`,
:func:`add`,
:func:`subtract`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: determinant
2011-03-08 23:22:24 +01:00
.. _determinant:
determinant
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: double determinant(const Mat& mtx)
2011-04-10 21:37:17 +02:00
Returns the determinant of a square floating-point matrix.
2011-04-10 21:37:17 +02:00
:param mtx: The input matrix that must have ``CV_32FC1`` or ``CV_64FC1`` type and square size.
2011-04-10 21:37:17 +02:00
The function ``determinant`` computes and returns the determinant of the specified matrix. For small matrices ( ``mtx.cols=mtx.rows<=3`` ),
the direct method is used. For larger matrices, the function uses LU factorization.
2011-04-10 21:37:17 +02:00
For symmetric positively-determined matrices, it is also possible to compute
2011-02-26 12:05:10 +01:00
:func:`SVD` :
:math:`\texttt{mtx}=U \cdot W \cdot V^T` and then calculate the determinant as a product of the diagonal elements of
:math:`W` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`SVD`,
:func:`trace`,
:func:`invert`,
:func:`solve`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: eigen
2011-03-08 23:22:24 +01:00
.. _eigen:
eigen
2011-03-08 23:22:24 +01:00
-----
.. c:function:: bool eigen(const Mat& src, Mat& eigenvalues, int lowindex=-1, int highindex=-1)
2011-03-08 23:22:24 +01:00
.. c:function:: bool eigen(const Mat& src, Mat& eigenvalues, Mat& eigenvectors, int lowindex=-1,int highindex=-1)
Computes eigenvalues and eigenvectors of a symmetric matrix.
2011-04-10 21:37:17 +02:00
:param src: The input matrix that must have ``CV_32FC1`` or ``CV_64FC1`` type, square size and be symmetric: :math:`\texttt{src}^T=\texttt{src}`
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param eigenvalues: The output vector of eigenvalues of the same type as ``src`` . The eigenvalues are stored in the descending order.
2011-04-10 21:37:17 +02:00
:param eigenvectors: The output matrix of eigenvectors. It has the same size and type as ``src`` . The eigenvectors are stored as subsequent matrix rows, in the same order as the corresponding eigenvalues.
2011-04-10 21:37:17 +02:00
:param lowindex: Optional index of largest eigenvalue/-vector to calculate. See below for more details.
2011-04-10 21:37:17 +02:00
:param highindex: Optional index of smallest eigenvalue/-vector to calculate. See below for more details.
2011-04-10 21:37:17 +02:00
The functions ``eigen`` compute just eigenvalues, or eigenvalues and eigenvectors of the symmetric matrix ``src`` : ::
src*eigenvectors(i,:)' = eigenvalues(i)*eigenvectors(i,:)' (in MATLAB notation)
2011-04-10 21:37:17 +02:00
If either ``low-`` or ``highindex`` is supplied, the other one is required, too.
Indexing is 0-based. For example, to calculate the largest eigenvector/-value set,
``lowindex = highindex = 0`` .
For legacy reasons, this function always returns a square matrix of the same size as the source matrix with eigenvectors and a vector of the length of the source matrix with eigenvalues. The selected eigenvectors/-values are always in the first ``highindex`` - ``lowindex`` + 1 rows.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`SVD`,
:func:`completeSymm`,
:func:`PCA`
2011-03-03 08:29:55 +01:00
.. index:: exp
2011-03-08 23:22:24 +01:00
.. _exp:
exp
2011-03-08 23:22:24 +01:00
---
2011-03-08 23:22:24 +01:00
.. c:function:: void exp(const Mat& src, Mat& dst)
.. c:function:: void exp(const MatND& src, MatND& dst)
Calculates the exponent of every array element.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and same type as ``src`` .
2011-03-03 08:29:55 +01:00
The function ``exp`` calculates the exponent of every element of the input array:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} [I] = e^{ \texttt{src} }(I)
2011-02-26 12:05:10 +01:00
The maximum relative error is about
:math:`7 \times 10^{-6}` for single-precision and less than
:math:`10^{-10}` for double-precision. Currently, the function converts denormalized values to zeros on output. Special values (NaN,
:math:`\pm \infty` ) are not handled.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`log`,
:func:`cartToPolar`,
:func:`polarToCart`,
:func:`phase`,
:func:`pow`,
:func:`sqrt`,
:func:`magnitude`
2011-03-03 08:29:55 +01:00
.. index:: extractImageCOI
2011-03-08 23:22:24 +01:00
.. _extractImageCOI:
extractImageCOI
2011-03-08 23:22:24 +01:00
---------------
.. c:function:: void extractImageCOI(const CvArr* src, Mat& dst, int coi=-1)
2011-04-10 21:37:17 +02:00
Extracts the selected image channel.
2011-04-10 21:37:17 +02:00
:param src: Source array. It should be a pointer to ``CvMat`` or ``IplImage`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array with a single channel and the same size and depth as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param coi: If the parameter is ``>=0`` , it specifies the channel to extract. If it is ``<0`` and ``src`` is a pointer to ``IplImage`` with a valid COI set, the selected COI is extracted.
2011-04-10 21:37:17 +02:00
The function ``extractImageCOI`` is used to extract an image COI from an old-style array and put the result to the new-style C++ matrix. As usual, the destination matrix is reallocated using ``Mat::create`` if needed.
2011-02-26 12:05:10 +01:00
To extract a channel from a new-style matrix, use
:func:`mixChannels` or
2011-04-10 21:37:17 +02:00
:func:`split` .
See Also:
:func:`mixChannels`,
:func:`split`,
:func:`merge`,
:func:`cvarrToMat`,
:func:`cvSetImageCOI`,
:func:`cvGetImageCOI`
2011-03-03 08:29:55 +01:00
.. index:: fastAtan2
2011-03-08 23:22:24 +01:00
.. _fastAtan2:
fastAtan2
2011-03-08 23:22:24 +01:00
---------
.. c:function:: float fastAtan2(float y, float x)
2011-04-10 21:37:17 +02:00
Calculates the angle of a 2D vector in degrees.
2011-04-10 21:37:17 +02:00
:param x: x-coordinate of the vector.
2011-04-10 21:37:17 +02:00
:param y: y-coordinate of the vector.
2011-04-10 21:37:17 +02:00
The function ``fastAtan2`` calculates the full-range angle of an input 2D vector. The angle is measured in degrees and varies from
2011-02-26 12:05:10 +01:00
:math:`0^\circ` to
:math:`360^\circ` . The accuracy is about
:math:`0.3^\circ` .
.. index:: flip
flip
--------
2011-03-08 23:22:24 +01:00
.. c:function:: void flip(const Mat& src, Mat& dst, int flipCode)
2011-04-10 21:37:17 +02:00
Flips a 2D array around vertical, horizontal, or both axes.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flipCode: Flag to specify how to flip the array. 0 means flipping around the x-axis. Positive value (for example, 1) means flipping around y-axis. Negative value (for example, -1) means flipping around both axes. See the discussion below for the formulas.
2011-02-26 12:05:10 +01:00
The function ``flip`` flips the array in one of three different ways (row and column indices are 0-based):
.. math::
\texttt{dst} _{ij} = \forkthree{\texttt{src}_{\texttt{src.rows}-i-1,j} }{if \texttt{flipCode} = 0}
{ \texttt{src} _{i, \texttt{src.cols} -j-1}}{if \texttt{flipCode} > 0}
2011-02-26 12:05:10 +01:00
{ \texttt{src} _{ \texttt{src.rows} -i-1, \texttt{src.cols} -j-1}}{if \texttt{flipCode} < 0}
2011-04-10 21:37:17 +02:00
The example scenarios of using the function are the following:
*
2011-04-10 21:37:17 +02:00
Vertical flipping of the image (
:math:`\texttt{flipCode} = 0` ) to switch between top-left and bottom-left image origin. This is a typical operation in video processing on Microsoft Windows* OS.
*
2011-04-10 21:37:17 +02:00
Horizontal flipping of the image with the subsequent horizontal shift and absolute difference calculation to check for a vertical-axis symmetry (
:math:`\texttt{flipCode} > 0` ).
*
2011-04-10 21:37:17 +02:00
Simultaneous horizontal and vertical flipping of the image with the subsequent shift and absolute difference calculation to check for a central symmetry (
:math:`\texttt{flipCode} < 0` ).
*
2011-04-10 21:37:17 +02:00
Reversing the order of 1D point arrays (
2011-02-26 12:05:10 +01:00
:math:`\texttt{flipCode} > 0` or
2011-04-10 21:37:17 +02:00
:math:`\texttt{flipCode} = 0` ).
2011-04-10 21:37:17 +02:00
See Also: :func:`transpose`,
:func:`repeat`,
:func:`completeSymm`
2011-03-03 08:29:55 +01:00
.. index:: gemm
2011-03-08 23:22:24 +01:00
.. _gemm:
gemm
2011-03-08 23:22:24 +01:00
----
.. c:function:: void gemm(const Mat& src1, const Mat& src2, double alpha, const Mat& src3, double beta, Mat& dst, int flags=0)
Performs generalized matrix multiplication.
2011-04-10 21:37:17 +02:00
:param src1: The first multiplied input matrix that should have ``CV_32FC1`` , ``CV_64FC1`` , ``CV_32FC2`` , or ``CV_64FC2`` type.
2011-04-10 21:37:17 +02:00
:param src2: The second multiplied input matrix of the same type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param alpha: Weight of the matrix product.
2011-04-10 21:37:17 +02:00
:param src3: The third optional delta matrix added to the matrix product. It should have the same type as ``src1`` and ``src2`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param beta: Weight of ``src3`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: The destination matrix. It has the proper size and the same type as input matrices.
2011-02-26 12:05:10 +01:00
:param flags: Operation flags:
2011-03-03 08:29:55 +01:00
* **GEMM_1_T** transpose ``src1``
* **GEMM_2_T** transpose ``src2``
* **GEMM_3_T** transpose ``src3``
The function performs generalized matrix multiplication and similar to the corresponding functions ``*gemm`` in BLAS level 3. For example, ``gemm(src1, src2, alpha, src3, beta, dst, GEMM_1_T + GEMM_3_T)`` corresponds to
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} = \texttt{alpha} \cdot \texttt{src1} ^T \cdot \texttt{src2} + \texttt{beta} \cdot \texttt{src3} ^T
2011-04-10 21:37:17 +02:00
The function can be replaced with a matrix expression. For example, the above call can be replaced with: ::
dst = alpha*src1.t()*src2 + beta*src3.t();
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`mulTransposed`,
:func:`transform`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: getConvertElem
2011-03-08 23:22:24 +01:00
.. _getConvertItem:
getConvertElem
2011-03-08 23:22:24 +01:00
--------------
.. c:function:: ConvertData getConvertElem(int fromType, int toType)
.. c:function:: ConvertScaleData getConvertScaleElem(int fromType, int toType)
.. c:function:: typedef void (*ConvertData)(const void* from, void* to, int cn)
2011-03-08 23:22:24 +01:00
.. c:function:: typedef void (*ConvertScaleData)(const void* from, void* to, int cn, double alpha, double beta)
2011-04-10 21:37:17 +02:00
Returns a conversion function for a single pixel.
2011-04-10 21:37:17 +02:00
:param fromType: The source pixel type.
2011-04-10 21:37:17 +02:00
:param toType: The destination pixel type.
2011-04-10 21:37:17 +02:00
:param from: Callback parameter: pointer to the input pixel.
2011-02-26 12:05:10 +01:00
:param to: Callback parameter: pointer to the output pixel
2011-04-10 21:37:17 +02:00
:param cn: Callback parameter: the number of channels. It can be arbitrary, 1, 100, 100000, ...
2011-04-10 21:37:17 +02:00
:param alpha: ``ConvertScaleData`` callback optional parameter: the scale factor.
2011-04-10 21:37:17 +02:00
:param beta: ``ConvertScaleData`` callback optional parameter: the delta or offset.
2011-02-26 12:05:10 +01:00
The functions ``getConvertElem`` and ``getConvertScaleElem`` return pointers to the functions for converting individual pixels from one type to another. While the main function purpose is to convert single pixels (actually, for converting sparse matrices from one type to another), you can use them to convert the whole row of a dense matrix or the whole matrix at once, by setting ``cn = matrix.cols*matrix.rows*matrix.channels()`` if the matrix data is continuous.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`Mat::convertTo`,
:func:`MatND::convertTo`,
:func:`SparseMat::convertTo`
2011-03-03 08:29:55 +01:00
.. index:: getOptimalDFTSize
2011-03-08 23:22:24 +01:00
.. _getOptimalDFTSize:
getOptimalDFTSize
2011-03-08 23:22:24 +01:00
-----------------
.. c:function:: int getOptimalDFTSize(int vecsize)
2011-04-10 21:37:17 +02:00
Returns the optimal DFT size for a given vector size.
2011-04-10 21:37:17 +02:00
:param vecsize: Vector size.
2011-04-10 21:37:17 +02:00
DFT performance is not a monotonic function of a vector size. Therefore, when you compute convolution of two arrays or perform the spectral analysis of an array, it usually makes sense to pad the input data with zeros to get a bit larger array that can be transformed much faster than the original one.
Arrays whose size is a power-of-two (2, 4, 8, 16, 32, ...) are the fastest to process. Though, the arrays whose size is a product of 2's, 3's, and 5's (for example, 300 = 5*5*3*2*2) are also processed quite efficiently.
2011-04-10 21:37:17 +02:00
The function ``getOptimalDFTSize`` returns the minimum number ``N`` that is greater than or equal to ``vecsize`` so that the DFT
2011-02-26 12:05:10 +01:00
of a vector of size ``N`` can be computed efficiently. In the current implementation
:math:`N=2^p \times 3^q \times 5^r` , for some
:math:`p`,:math:`q`,:math:`r` .
2011-02-26 12:05:10 +01:00
The function returns a negative number if ``vecsize`` is too large (very close to ``INT_MAX`` ).
2011-02-26 12:05:10 +01:00
While the function cannot be used directly to estimate the optimal vector size for DCT transform (since the current DCT implementation supports only even-size vectors), it can be easily computed as ``getOptimalDFTSize((vecsize+1)/2)*2`` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`dft`,
:func:`dct`,
:func:`idft`,
:func:`idct`,
:func:`mulSpectrums`
2011-03-03 08:29:55 +01:00
.. index:: idct
2011-03-08 23:22:24 +01:00
.. _idct:
idct
2011-03-08 23:22:24 +01:00
----
.. c:function:: void idct(const Mat& src, Mat& dst, int flags=0)
2011-04-10 21:37:17 +02:00
Computes the inverse Discrete Cosine Transform of a 1D or 2D array.
2011-04-10 21:37:17 +02:00
:param src: The source floating-point single-channel array.
2011-04-10 21:37:17 +02:00
:param dst: The destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
:param flags: The operation flags.
``idct(src, dst, flags)`` is equivalent to ``dct(src, dst, flags | DCT_INVERSE)``.
2011-04-10 21:37:17 +02:00
See Also: :func:`dct`,
:func:`dft`,
:func:`idft`,
:func:`getOptimalDFTSize`
2011-03-03 08:29:55 +01:00
.. index:: idft
2011-03-08 23:22:24 +01:00
.. _idft:
idft
2011-03-08 23:22:24 +01:00
----
2011-03-03 08:29:55 +01:00
.. c:function:: void idft(const Mat& src, Mat& dst, int flags=0, int outputRows=0)
2011-04-10 21:37:17 +02:00
Computes the inverse Discrete Fourier Transform of a 1D or 2D array.
2011-04-10 21:37:17 +02:00
:param src: The source floating-point real or complex array.
2011-04-10 21:37:17 +02:00
:param dst: The destination array whose size and type depend on the ``flags`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: The operation flags. See :func:`dft` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param nonzeroRows: The number of ``dst`` rows to compute. The rest of the rows have undefined content. See the convolution sample in :func:`dft` description.
2011-03-03 08:29:55 +01:00
``idft(src, dst, flags)`` is equivalent to ``dct(src, dst, flags | DFT_INVERSE)`` .
See :func:`dft` for details.
2011-04-10 21:37:17 +02:00
**Note**:
None of ``dft`` and ``idft`` scale the result by default.
2011-02-26 12:05:10 +01:00
Thus, you should pass ``DFT_SCALE`` to one of ``dft`` or ``idft`` explicitly to make these transforms mutually inverse.
2011-04-10 21:37:17 +02:00
See Also: :func:`dft`,
:func:`dct`,
:func:`idct`,
:func:`mulSpectrums`,
:func:`getOptimalDFTSize`
2011-03-03 08:29:55 +01:00
.. index:: inRange
2011-03-08 23:22:24 +01:00
.. _inRange:
inRange
2011-03-08 23:22:24 +01:00
-------
2011-03-08 23:22:24 +01:00
.. c:function:: void inRange(const Mat& src, const Mat& lowerb, const Mat& upperb, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void inRange(const Mat& src, const Scalar& lowerb, const Scalar& upperb, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void inRange(const MatND& src, const MatND& lowerb, const MatND& upperb, MatND& dst)
.. c:function:: void inRange(const MatND& src, const Scalar& lowerb, const Scalar& upperb, MatND& dst)
Checks if array elements lie between the elements of two other arrays.
2011-04-10 21:37:17 +02:00
:param src: The first source array.
2011-04-10 21:37:17 +02:00
:param lowerb: Inclusive lower boundary array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param upperb: Exclusive upper boundary array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size as ``src`` and ``CV_8U`` type.
2011-04-10 21:37:17 +02:00
The functions ``inRange`` check the range as follows:
* for every element of the input array:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 < \texttt{upperb} (I)_0
2011-04-10 21:37:17 +02:00
* for single-channel arrays:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 < \texttt{upperb} (I)_0 \land \texttt{lowerb} (I)_1 \leq \texttt{src} (I)_1 < \texttt{upperb} (I)_1
2011-04-10 21:37:17 +02:00
* for two-channel arrays and so forth.
``dst`` (I) is set to 255 (all ``1`` -bits) if ``src`` (I) is within the specified range and 0 otherwise.
.. index:: invert
2011-03-08 23:22:24 +01:00
.. _invert:
invert
2011-03-08 23:22:24 +01:00
------
.. c:function:: double invert(const Mat& src, Mat& dst, int method=DECOMP_LU)
2011-04-10 21:37:17 +02:00
Finds the inverse or pseudo-inverse of a matrix.
2011-04-10 21:37:17 +02:00
:param src: The source floating-point :math:`M \times N` matrix.
2011-04-10 21:37:17 +02:00
:param dst: The destination matrix of :math:`N \times M` size and the same type as ``src`` .
2011-03-03 08:29:55 +01:00
:param flags: The inversion method :
2011-04-10 21:37:17 +02:00
* **DECOMP_LU** Gaussian elimination with the optimal pivot element chosen.
2011-04-10 21:37:17 +02:00
* **DECOMP_SVD** Singular value decomposition (SVD) method.
2011-04-10 21:37:17 +02:00
* **DECOMP_CHOLESKY** Cholesky decomposion. The matrix must be symmetrical and positively defined.
2011-04-10 21:37:17 +02:00
The function ``invert`` inverts the matrix ``src`` and stores the result in ``dst`` .
When the matrix ``src`` is singular or non-square, the function computes the pseudo-inverse matrix (the ``dst`` matrix) so that
2011-02-26 12:05:10 +01:00
:math:`\|\texttt{src} \cdot \texttt{dst} - I\|` is minimal.
2011-04-10 21:37:17 +02:00
In case of the ``DECOMP_LU`` method, the function returns the ``src`` determinant ( ``src`` must be square). If it is 0, the matrix is not inverted and ``dst`` is filled with zeros.
2011-04-10 21:37:17 +02:00
In case of the ``DECOMP_SVD`` method, the function returns the inverse condition number of ``src`` (the ratio of the smallest singular value to the largest singular value) and 0 if ``src`` is singular. The SVD method calculates a pseudo-inverse matrix if ``src`` is singular.
2011-04-10 21:37:17 +02:00
Similarly to ``DECOMP_LU`` , the method ``DECOMP_CHOLESKY`` works only with non-singular square matrices. In this case, the function stores the inverted matrix in ``dst`` and returns non-zero. Otherwise, it returns 0.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`solve`,
:func:`SVD`
2011-03-03 08:29:55 +01:00
.. index:: log
2011-03-08 23:22:24 +01:00
.. _log:
log
2011-03-08 23:22:24 +01:00
---
2011-03-08 23:22:24 +01:00
.. c:function:: void log(const Mat& src, Mat& dst)
.. c:function:: void log(const MatND& src, MatND& dst)
Calculates the natural logarithm of every array element.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
The function ``log`` calculates the natural logarithm of the absolute value of every element of the input array:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \fork{\log |\texttt{src}(I)|}{if $\texttt{src}(I) \ne 0$ }{\texttt{C}}{otherwise}
2011-04-10 21:37:17 +02:00
where ``C`` is a large negative number (about -700 in the current implementation).
2011-02-26 12:05:10 +01:00
The maximum relative error is about
:math:`7 \times 10^{-6}` for single-precision input and less than
:math:`10^{-10}` for double-precision input. Special values (NaN,
:math:`\pm \infty` ) are not handled.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`exp`,
:func:`cartToPolar`,
:func:`polarToCart`,
:func:`phase`,
:func:`pow`,
:func:`sqrt`,
:func:`magnitude`
2011-03-03 08:29:55 +01:00
.. index:: LUT
2011-03-08 23:22:24 +01:00
.. _LUT:
LUT
2011-03-08 23:22:24 +01:00
---
.. c:function:: void LUT(const Mat& src, const Mat& lut, Mat& dst)
Performs a look-up table transform of an array.
2011-04-10 21:37:17 +02:00
:param src: Source array of 8-bit elements.
2011-04-10 21:37:17 +02:00
:param lut: Look-up table of 256 elements. In case of multi-channel source array, the table should either have a single channel (in this case the same table is used for all channels) or the same number of channels as in the source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and the same number of channels as ``src`` , and the same depth as ``lut`` .
2011-03-03 08:29:55 +01:00
The function ``LUT`` fills the destination array with values from the look-up table. Indices of the entries are taken from the source array. That is, the function processes each element of ``src`` as follows:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) \leftarrow \texttt{lut(src(I) + d)}
where
.. math::
2011-02-26 12:05:10 +01:00
d = \fork{0}{if \texttt{src} has depth \texttt{CV\_8U}}{128}{if \texttt{src} has depth \texttt{CV\_8S}}
2011-04-07 22:29:59 +02:00
See Also:
2011-03-03 08:29:55 +01:00
:func:`convertScaleAbs`,``Mat::convertTo``
.. index:: magnitude
2011-03-08 23:22:24 +01:00
.. _magnitude:
magnitude
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void magnitude(const Mat& x, const Mat& y, Mat& magnitude)
2011-04-10 21:37:17 +02:00
Calculates the magnitude of 2D vectors.
2011-04-10 21:37:17 +02:00
:param x: Floating-point array of x-coordinates of the vectors.
2011-04-10 21:37:17 +02:00
:param y: Floating-point array of y-coordinates of the vectors. It must have the same size as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
The function ``magnitude`` calculates the magnitude of 2D vectors formed from the corresponding elements of ``x`` and ``y`` arrays:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \sqrt{\texttt{x}(I)^2 + \texttt{y}(I)^2}
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`cartToPolar`,
:func:`polarToCart`,
:func:`phase`,
:func:`sqrt`
2011-03-03 08:29:55 +01:00
.. index:: Mahalanobis
2011-03-08 23:22:24 +01:00
.. _Mahalanobis:
Mahalanobis
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: double Mahalanobis(const Mat& vec1, const Mat& vec2, const Mat& icovar)
Calculates the Mahalanobis distance between two vectors.
2011-04-10 21:37:17 +02:00
:param vec1: The first 1D source vector.
2011-04-10 21:37:17 +02:00
:param vec2: The second 1D source vector.
2011-04-10 21:37:17 +02:00
:param icovar: Inverse covariance matrix.
2011-02-26 12:05:10 +01:00
The function ``cvMahalonobis`` calculates and returns the weighted distance between two vectors:
.. math::
2011-02-26 12:05:10 +01:00
d( \texttt{vec1} , \texttt{vec2} )= \sqrt{\sum_{i,j}{\texttt{icovar(i,j)}\cdot(\texttt{vec1}(I)-\texttt{vec2}(I))\cdot(\texttt{vec1(j)}-\texttt{vec2(j)})} }
2011-02-26 12:05:10 +01:00
The covariance matrix may be calculated using the
:func:`calcCovarMatrix` function and then inverted using the
2011-04-10 21:37:17 +02:00
:func:`invert` function (preferably using the ``DECOMP_SVD`` method, as the most accurate).
.. index:: max
2011-03-08 23:22:24 +01:00
.. _max:
max
2011-03-08 23:22:24 +01:00
---
.. c:function:: Mat_Expr<...> max(const Mat& src1, const Mat& src2)
2011-03-08 23:22:24 +01:00
.. c:function:: Mat_Expr<...> max(const Mat& src1, double value)
2011-03-08 23:22:24 +01:00
.. c:function:: Mat_Expr<...> max(double value, const Mat& src1)
2011-03-08 23:22:24 +01:00
.. c:function:: void max(const Mat& src1, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void max(const Mat& src1, double value, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void max(const MatND& src1, const MatND& src2, MatND& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void max(const MatND& src1, double value, MatND& dst)
2011-04-10 21:37:17 +02:00
Calculates per-element maximum of two arrays or array and a scalar.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param value: Real scalar value.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
The functions ``max`` compute the per-element maximum of two arrays:
.. math::
2011-03-08 23:22:24 +01:00
\texttt{dst} (I)= \max ( \texttt{src1} (I), \texttt{src2} (I))
or array and a scalar:
.. math::
2011-03-08 23:22:24 +01:00
\texttt{dst} (I)= \max ( \texttt{src1} (I), \texttt{value} )
2011-02-26 12:05:10 +01:00
In the second variant, when the source array is multi-channel, each channel is compared with ``value`` independently.
2011-02-26 12:05:10 +01:00
The first 3 variants of the function listed above are actually a part of
2011-04-10 21:37:17 +02:00
:ref:`MatrixExpressions` . They return an expression object that can be further either transformed/ assigned to a matrix, or passed to a function, and so on.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`min`,
:func:`compare`,
:func:`inRange`,
:func:`minMaxLoc`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: mean
2011-03-08 23:22:24 +01:00
.. _mean:
mean
2011-03-08 23:22:24 +01:00
----
2011-03-08 23:22:24 +01:00
.. c:function:: Scalar mean(const Mat& mtx)
2011-03-08 23:22:24 +01:00
.. c:function:: Scalar mean(const Mat& mtx, const Mat& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: Scalar mean(const MatND& mtx)
.. c:function:: Scalar mean(const MatND& mtx, const MatND& mask)
2011-04-10 21:37:17 +02:00
Calculates an average (mean) of array elements.
2011-04-10 21:37:17 +02:00
:param mtx: Source array that should have from 1 to 4 channels so that the result can be stored in :func:`Scalar` .
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask.
2011-02-26 12:05:10 +01:00
The functions ``mean`` compute mean value ``M`` of array elements, independently for each channel, and return it:
.. math::
2011-02-26 12:05:10 +01:00
\begin{array}{l} N = \sum _{I: \; \texttt{mask} (I) \ne 0} 1 \\ M_c = \left ( \sum _{I: \; \texttt{mask} (I) \ne 0}{ \texttt{mtx} (I)_c} \right )/N \end{array}
2011-02-26 12:05:10 +01:00
When all the mask elements are 0's, the functions return ``Scalar::all(0)`` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`countNonZero`,
:func:`meanStdDev`,
:func:`norm`,
:func:`minMaxLoc`
2011-03-03 08:29:55 +01:00
.. index:: meanStdDev
2011-03-08 23:22:24 +01:00
.. _meanStdDev:
meanStdDev
2011-03-08 23:22:24 +01:00
----------
.. c:function:: void meanStdDev(const Mat& mtx, Scalar& mean, Scalar& stddev, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void meanStdDev(const MatND& mtx, Scalar& mean, Scalar& stddev, const MatND& mask=MatND())
2011-04-10 21:37:17 +02:00
Calculates mean and standard deviation of array elements.
2011-04-10 21:37:17 +02:00
:param mtx: Source array that should have from 1 to 4 channels so that the results can be stored in :func:`Scalar` 's.
2011-04-10 21:37:17 +02:00
:param mean: Output parameter: computed mean value.
2011-04-10 21:37:17 +02:00
:param stddev: Output parameter: computed standard deviation.
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask.
2011-04-10 21:37:17 +02:00
The functions ``meanStdDev`` compute the mean and the standard deviation ``M`` of array elements independently for each channel and return it via the output parameters:
.. math::
2011-03-08 23:22:24 +01:00
\begin{array}{l} N = \sum _{I, \texttt{mask} (I) \ne 0} 1 \\ \texttt{mean} _c = \frac{\sum_{ I: \; \texttt{mask}(I) \ne 0} \texttt{src} (I)_c}{N} \\ \texttt{stddev} _c = \sqrt{\sum_{ I: \; \texttt{mask}(I) \ne 0} \left ( \texttt{src} (I)_c - \texttt{mean} _c \right )^2} \end{array}
2011-02-26 12:05:10 +01:00
When all the mask elements are 0's, the functions return ``mean=stddev=Scalar::all(0)`` .
2011-04-10 21:37:17 +02:00
**Note**:
The computed standard deviation is only the diagonal of the complete normalized covariance matrix. If the full matrix is needed, you can reshape the multi-channel array
2011-02-26 12:05:10 +01:00
:math:`M \times N` to the single-channel array
:math:`M*N \times \texttt{mtx.channels}()` (only possible when the matrix is continuous) and then pass the matrix to
:func:`calcCovarMatrix` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`countNonZero`,
:func:`mean`,
:func:`norm`,
:func:`minMaxLoc`,
:func:`calcCovarMatrix`
2011-03-03 08:29:55 +01:00
.. index:: merge
2011-03-08 23:22:24 +01:00
.. _merge:
merge
2011-03-08 23:22:24 +01:00
-----
2011-03-08 23:22:24 +01:00
.. c:function:: void merge(const Mat* mv, size_t count, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void merge(const vector<Mat>& mv, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void merge(const MatND* mv, size_t count, MatND& dst)
.. c:function:: void merge(const vector<MatND>& mv, MatND& dst)
Composes a multi-channel array from several single-channel arrays.
2011-04-10 21:37:17 +02:00
:param mv: Source array or vector of the single-channel matrices to be merged. All the matrices in ``mv`` must have the same size and the same type.
2011-04-10 21:37:17 +02:00
:param count: Number of source matrices when ``mv`` is a plain C array. It must be greater than zero.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and the same depth as ``mv[0]`` . The number of channels matches the number of source matrices.
2011-02-26 12:05:10 +01:00
The functions ``merge`` merge several single-channel arrays (or rather interleave their elements) to make a single multi-channel array.
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)_c = \texttt{mv} [c](I)
2011-02-26 12:05:10 +01:00
The function
2011-04-10 21:37:17 +02:00
:func:`split` does the reverse operatio. If you need to merge several multi-channel images or shuffle channels in some other advanced way, use
:func:`mixChannels` .
See Also:
:func:`mixChannels`,
:func:`split`,
:func:`reshape`
2011-03-03 08:29:55 +01:00
.. index:: min
2011-03-08 23:22:24 +01:00
.. _min:
min
2011-03-08 23:22:24 +01:00
---
2011-03-08 23:22:24 +01:00
.. c:function:: Mat_Expr<...> min(const Mat& src1, const Mat& src2)
2011-03-08 23:22:24 +01:00
.. c:function:: Mat_Expr<...> min(const Mat& src1, double value)
2011-03-08 23:22:24 +01:00
.. c:function:: Mat_Expr<...> min(double value, const Mat& src1)
2011-03-08 23:22:24 +01:00
.. c:function:: void min(const Mat& src1, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void min(const Mat& src1, double value, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void min(const MatND& src1, const MatND& src2, MatND& dst)
.. c:function:: void min(const MatND& src1, double value, MatND& dst)
2011-04-10 21:37:17 +02:00
Calculates per-element minimum of two arrays or array and a scalar.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param value: Real scalar value.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
The functions ``min`` compute the per-element minimum of two arrays:
.. math::
2011-03-08 23:22:24 +01:00
\texttt{dst} (I)= \min ( \texttt{src1} (I), \texttt{src2} (I))
or array and a scalar:
.. math::
2011-03-08 23:22:24 +01:00
\texttt{dst} (I)= \min ( \texttt{src1} (I), \texttt{value} )
2011-02-26 12:05:10 +01:00
In the second variant, when the source array is multi-channel, each channel is compared with ``value`` independently.
2011-04-10 21:37:17 +02:00
The first three variants of the function listed above are actually a part of
:ref:`MatrixExpressions` . They return the expression object that can be further either transformed/assigned to a matrix, or passed to a function, and so on.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`max`,
:func:`compare`,
:func:`inRange`,
:func:`minMaxLoc`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: minMaxLoc
2011-03-08 23:22:24 +01:00
.. _minMaxLoc:
minMaxLoc
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void minMaxLoc(const Mat& src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void minMaxLoc(const MatND& src, double* minVal, double* maxVal, int* minIdx=0, int* maxIdx=0, const MatND& mask=MatND())
2011-03-08 23:22:24 +01:00
.. c:function:: void minMaxLoc(const SparseMat& src, double* minVal, double* maxVal, int* minIdx=0, int* maxIdx=0)
2011-04-10 21:37:17 +02:00
Finds the global minimum and maximum in a whole array or sub-array.
2011-04-10 21:37:17 +02:00
:param src: Source single-channel array.
2011-04-10 21:37:17 +02:00
:param minVal: Pointer to the returned minimum value. ``NULL`` is used if not required.
2011-04-10 21:37:17 +02:00
:param maxVal: Pointer to the returned maximum value. ``NULL`` is used if not required.
2011-04-10 21:37:17 +02:00
:param minLoc: Pointer to the returned minimum location (in 2D case). ``NULL`` is used if not required.
2011-04-10 21:37:17 +02:00
:param maxLoc: Pointer to the returned maximum location (in 2D case). ``NULL`` is used if not required.
2011-04-10 21:37:17 +02:00
:param minIdx: Pointer to the returned minimum location (in nD case). ``NULL`` is used if not required. Otherwise, it must point to an array of ``src.dims`` elements. The coordinates of minimum element in each dimensions will be stored sequentially there.
2011-04-10 21:37:17 +02:00
:param maxIdx: Pointer to the returned maximum location (in nD case). ``NULL`` is used if not required.
2011-04-10 21:37:17 +02:00
:param mask: Optional mask used to select a sub-array.
2011-04-10 21:37:17 +02:00
The functions ``ninMaxLoc`` find minimum and maximum element values and their positions. The extremums are searched across the whole array or,
2011-02-26 12:05:10 +01:00
if ``mask`` is not an empty array, in the specified array region.
2011-02-26 12:05:10 +01:00
The functions do not work with multi-channel arrays. If you need to find minimum or maximum elements across all the channels, use
2011-04-10 21:37:17 +02:00
:func:`reshape` first to reinterpret the array as single-channel. Or you may extract the particular channel using either
:func:`extractImageCOI` , or
:func:`mixChannels` , or
2011-02-26 12:05:10 +01:00
:func:`split` .
2011-04-10 21:37:17 +02:00
In case of a sparse matrix, the minimum is found among non-zero elements only.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`max`,
:func:`min`,
:func:`compare`,
:func:`inRange`,
:func:`extractImageCOI`,
:func:`mixChannels`,
:func:`split`,
:func:`reshape`
.. index:: mixChannels
2011-03-08 23:22:24 +01:00
.. _mixChannels:
mixChannels
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: void mixChannels(const Mat* srcv, int nsrc, Mat* dstv, int ndst, const int* fromTo, size_t npairs)
2011-03-08 23:22:24 +01:00
.. c:function:: void mixChannels(const MatND* srcv, int nsrc, MatND* dstv, int ndst, const int* fromTo, size_t npairs)
2011-03-08 23:22:24 +01:00
.. c:function:: void mixChannels(const vector<Mat>& srcv, vector<Mat>& dstv, const int* fromTo, int npairs)
2011-03-08 23:22:24 +01:00
.. c:function:: void mixChannels(const vector<MatND>& srcv, vector<MatND>& dstv, const int* fromTo, int npairs)
2011-04-10 21:37:17 +02:00
Copies specified channels from input arrays to the specified channels of output arrays.
2011-04-10 21:37:17 +02:00
:param srcv: Input array or vector of matrices. All the matrices must have the same size and the same depth.
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
:param nsrc: Number of elements in ``srcv`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dstv: Output array or vector of matrices. All the matrices *must be allocated* . Their size and depth must be the same as in ``srcv[0]`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param ndst: Number of elements in ``dstv`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param fromTo: Array of index pairs specifying which channels are copied and where. ``fromTo[k*2]`` is a 0-based index of the input channel in ``srcv`` . ``fromTo[k*2+1]`` is an index of the output channel in ``dstv`` . The continuous channel numbering is used: the first input image channels are indexed from ``0`` to ``srcv[0].channels()-1`` , the second input image channels are indexed from ``srcv[0].channels()`` to ``srcv[0].channels() + srcv[1].channels()-1`` and so on. The same scheme is used for the output image channels. As a special case, when ``fromTo[k*2]`` is negative, the corresponding output channel is filled with zero ``npairs`` .
2011-03-03 08:29:55 +01:00
The functions ``mixChannels`` provide an advanced mechanism for shuffling image channels.
2011-02-26 12:05:10 +01:00
:func:`split` and
:func:`merge` and some forms of
:func:`cvtColor` are partial cases of ``mixChannels`` .
2011-04-10 21:37:17 +02:00
As an example, this code splits a 4-channel RGBA image into a 3-channel BGR (with R and B channels swapped) and separate alpha channel image: ::
Mat rgba( 100, 100, CV_8UC4, Scalar(1,2,3,4) );
Mat bgr( rgba.rows, rgba.cols, CV_8UC3 );
Mat alpha( rgba.rows, rgba.cols, CV_8UC1 );
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// forming an array of matrices is a quite efficient operation,
// because the matrix data is not copied, only the headers
Mat out[] = { bgr, alpha };
// rgba[0] -> bgr[2], rgba[1] -> bgr[1],
// rgba[2] -> bgr[0], rgba[3] -> alpha[0]
2011-03-08 23:22:24 +01:00
int from_to[] = { 0,2, 1,1, 2,0, 3,3 };
mixChannels( &rgba, 1, out, 2, from_to, 4 );
2011-04-10 21:37:17 +02:00
**Note**
Unlike many other new-style C++ functions in OpenCV (see the introduction section and
:func:`Mat::create` ), ``mixChannels`` requires the destination arrays to be pre-allocated before calling the function.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`split`,
:func:`merge`,
:func:`cvtColor`
2011-03-03 08:29:55 +01:00
.. index:: mulSpectrums
2011-03-08 23:22:24 +01:00
.. _mulSpectrums:
mulSpectrums
2011-03-08 23:22:24 +01:00
------------
.. c:function:: void mulSpectrums(const Mat& src1, const Mat& src2, Mat& dst, int flags, bool conj=false)
2011-04-10 21:37:17 +02:00
Performs the per-element multiplication of two Fourier spectrums.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array. It has the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: The same flags as passed to :func:`dft` . Only the flag ``DFT_ROWS`` is checked for.??
2011-04-10 21:37:17 +02:00
:param conj: Optional flag that conjugates the second source array before the multiplication (true) or not (false).
2011-04-10 21:37:17 +02:00
The function ``mulSpectrums`` performs the per-element multiplication of the two CCS-packed or complex matrices that are results of a real or complex Fourier transform.
2011-02-26 12:05:10 +01:00
The function, together with
:func:`dft` and
2011-04-10 21:37:17 +02:00
:func:`idft` , may be used to calculate convolution (pass ``conj=false`` ) or correlation (pass ``conj=false`` ) of two arrays rapidly. When the arrays are complex, they are simply multiplied (per element) with an optional conjugation of the second-array elements. When the arrays are real, they are assumed to be CCS-packed (see
2011-02-26 12:05:10 +01:00
:func:`dft` for details).
.. index:: multiply
2011-03-08 23:22:24 +01:00
.. _multiply:
multiply
2011-03-08 23:22:24 +01:00
--------
.. c:function:: void multiply(const Mat& src1, const Mat& src2, Mat& dst, double scale=1)
2011-03-08 23:22:24 +01:00
.. c:function:: void multiply(const MatND& src1, const MatND& src2, MatND& dst, double scale=1)
2011-04-10 21:37:17 +02:00
Calculates the per-element scaled product of two arrays.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and the same type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param scale: Optional scale factor.
2011-02-26 12:05:10 +01:00
The function ``multiply`` calculates the per-element product of two arrays:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{saturate} ( \texttt{scale} \cdot \texttt{src1} (I) \cdot \texttt{src2} (I))
2011-02-26 12:05:10 +01:00
There is also
2011-04-10 21:37:17 +02:00
:ref:`MatrixExpressions` -friendly variant of the first function. See
2011-02-26 12:05:10 +01:00
:func:`Mat::mul` .
2011-04-10 21:37:17 +02:00
For a not-per-element matrix product, see
2011-02-26 12:05:10 +01:00
:func:`gemm` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`add`,
:func:`substract`,
:func:`divide`,
:ref:`MatrixExpressions`,
:func:`scaleAdd`,
:func:`addWeighted`,
:func:`accumulate`,
:func:`accumulateProduct`,
:func:`accumulateSquare`,
:func:`Mat::convertTo`
2011-03-03 08:29:55 +01:00
.. index:: mulTransposed
2011-03-08 23:22:24 +01:00
.. mulTransposed:
mulTransposed
2011-03-08 23:22:24 +01:00
-------------
.. c:function:: void mulTransposed( const Mat& src, Mat& dst, bool aTa, const Mat& delta=Mat(), double scale=1, int rtype=-1 )
Calculates the product of a matrix and its transposition.
2011-04-10 21:37:17 +02:00
:param src: Source matrix.
2011-04-10 21:37:17 +02:00
:param dst: Destination square matrix.
2011-04-10 21:37:17 +02:00
:param aTa: Flag specifying the multiplication ordering. See the description below.
2011-04-10 21:37:17 +02:00
:param delta: Optional delta matrix subtracted from ``src`` before the multiplication. When the matrix is empty ( ``delta=Mat()`` ), it is assumed to be zero, that is, nothing is subtracted. If it has the same size as ``src`` , it is simply subtracted. Otherwise, it is "repeated" (see :func:`repeat` ) to cover the full ``src`` and then subtracted. Type of the delta matrix, when it is not empty, must be the same as the type of created destination matrix. See the ``rtype`` description.
2011-04-10 21:37:17 +02:00
:param scale: Optional scale factor for the matrix product.
2011-04-10 21:37:17 +02:00
:param rtype: When it is negative, the destination matrix has the same type as ``src`` . Otherwise, it has ``type=CV_MAT_DEPTH(rtype)`` that should be either ``CV_32F`` or ``CV_64F`` .
2011-03-03 08:29:55 +01:00
The function ``mulTransposed`` calculates the product of ``src`` and its transposition:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} = \texttt{scale} ( \texttt{src} - \texttt{delta} )^T ( \texttt{src} - \texttt{delta} )
2011-02-26 12:05:10 +01:00
if ``aTa=true`` , and
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} = \texttt{scale} ( \texttt{src} - \texttt{delta} ) ( \texttt{src} - \texttt{delta} )^T
2011-04-10 21:37:17 +02:00
otherwise. The function is used to compute the covariance matrix. With zero delta, it can be used as a faster substitute for general matrix product
2011-02-26 12:05:10 +01:00
:math:`A*B` when
:math:`B=A^T` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`calcCovarMatrix`,
:func:`gemm`,
:func:`repeat`,
:func:`reduce`
2011-03-03 08:29:55 +01:00
.. index:: norm
2011-03-08 23:22:24 +01:00
.. _norm:
norm
2011-03-08 23:22:24 +01:00
----
.. c:function:: double norm(const Mat& src1, int normType=NORM_L2)
2011-03-08 23:22:24 +01:00
.. c:function:: double norm(const Mat& src1, const Mat& src2, int normType=NORM_L2)
2011-03-08 23:22:24 +01:00
.. c:function:: double norm(const Mat& src1, int normType, const Mat& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: double norm(const Mat& src1, const Mat& src2, int normType, const Mat& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: double norm(const MatND& src1, int normType=NORM_L2, const MatND& mask=MatND())
2011-03-08 23:22:24 +01:00
.. c:function:: double norm(const MatND& src1, const MatND& src2, int normType=NORM_L2, const MatND& mask=MatND())
2011-03-08 23:22:24 +01:00
.. c:function:: double norm( const SparseMat& src, int normType )
2011-04-10 21:37:17 +02:00
Calculates an absolute array norm, an absolute difference norm, or a relative difference norm.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and the same type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param normType: Type of the norm. See the details below.
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask.
2011-04-10 21:37:17 +02:00
The functions ``norm`` calculate an absolute norm of ``src1`` (when there is no ``src2`` ):
.. math::
norm = \forkthree{\|\texttt{src1}\|_{L_{\infty}} = \max _I | \texttt{src1} (I)|}{if $\texttt{normType} = \texttt{NORM\_INF}$ }
{ \| \texttt{src1} \| _{L_1} = \sum _I | \texttt{src1} (I)|}{if $\texttt{normType} = \texttt{NORM\_L1}$ }
2011-02-26 12:05:10 +01:00
{ \| \texttt{src1} \| _{L_2} = \sqrt{\sum_I \texttt{src1}(I)^2} }{if $\texttt{normType} = \texttt{NORM\_L2}$ }
2011-02-26 12:05:10 +01:00
or an absolute or relative difference norm if ``src2`` is there:
.. math::
norm = \forkthree{\|\texttt{src1}-\texttt{src2}\|_{L_{\infty}} = \max _I | \texttt{src1} (I) - \texttt{src2} (I)|}{if $\texttt{normType} = \texttt{NORM\_INF}$ }
{ \| \texttt{src1} - \texttt{src2} \| _{L_1} = \sum _I | \texttt{src1} (I) - \texttt{src2} (I)|}{if $\texttt{normType} = \texttt{NORM\_L1}$ }
2011-02-26 12:05:10 +01:00
{ \| \texttt{src1} - \texttt{src2} \| _{L_2} = \sqrt{\sum_I (\texttt{src1}(I) - \texttt{src2}(I))^2} }{if $\texttt{normType} = \texttt{NORM\_L2}$ }
or
.. math::
norm = \forkthree{\frac{\|\texttt{src1}-\texttt{src2}\|_{L_{\infty}} }{\|\texttt{src2}\|_{L_{\infty}} }}{if $\texttt{normType} = \texttt{NORM\_RELATIVE\_INF}$ }
{ \frac{\|\texttt{src1}-\texttt{src2}\|_{L_1} }{\|\texttt{src2}\|_{L_1}} }{if $\texttt{normType} = \texttt{NORM\_RELATIVE\_L1}$ }
2011-02-26 12:05:10 +01:00
{ \frac{\|\texttt{src1}-\texttt{src2}\|_{L_2} }{\|\texttt{src2}\|_{L_2}} }{if $\texttt{normType} = \texttt{NORM\_RELATIVE\_L2}$ }
2011-02-26 12:05:10 +01:00
The functions ``norm`` return the calculated norm.
2011-04-10 21:37:17 +02:00
When the ``mask`` parameter is used and it is not empty (has the type ``CV_8U`` and the same size as ``src1`` ), the norm is computed only over the region specified by the mask.
2011-04-10 21:37:17 +02:00
A multi-channel source arrays are treated as a single-channel, that is, the results for all channels are combined.
.. index:: normalize
2011-03-08 23:22:24 +01:00
.. _normalize:
normalize
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void normalize( const Mat& src, Mat& dst, double alpha=1, double beta=0, int normType=NORM_L2, int rtype=-1, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void normalize( const MatND& src, MatND& dst, double alpha=1, double beta=0, int normType=NORM_L2, int rtype=-1, const MatND& mask=MatND())
2011-03-08 23:22:24 +01:00
.. c:function:: void normalize( const SparseMat& src, SparseMat& dst, double alpha, int normType )
2011-04-10 21:37:17 +02:00
Normalizes an array norm or a range.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param alpha: Norm value to normalize to or the lower range boundary in case of the range normalization.
2011-04-10 21:37:17 +02:00
:param beta: Upper range boundary in case ofthe range normalization. It is not used for the norm normalization.
2011-04-10 21:37:17 +02:00
:param normType: Normalization type. See the discussion.
2011-04-10 21:37:17 +02:00
:param rtype: When the parameter is negative, the destination array has the same type as ``src`` . Otherwise, it has the same number of channels as ``src`` and the depth ``=CV_MAT_DEPTH(rtype)`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask.
2011-02-26 12:05:10 +01:00
The functions ``normalize`` scale and shift the source array elements, so that
.. math::
2011-02-26 12:05:10 +01:00
\| \texttt{dst} \| _{L_p}= \texttt{alpha}
2011-02-26 12:05:10 +01:00
(where
:math:`p=\infty` , 1 or 2) when ``normType=NORM_INF``,``NORM_L1`` or ``NORM_L2``,or so that
.. math::
2011-02-26 12:05:10 +01:00
\min _I \texttt{dst} (I)= \texttt{alpha} , \, \, \max _I \texttt{dst} (I)= \texttt{beta}
2011-02-26 12:05:10 +01:00
when ``normType=NORM_MINMAX`` (for dense arrays only).
2011-04-10 21:37:17 +02:00
The optional mask specifies a sub-array to be normalized. This means that the norm or min-n-max are computed over the sub-array, and then this sub-array is modified to be normalized. If you want to only use the mask to compute the norm or min-max but modify the whole array, you can use
2011-02-26 12:05:10 +01:00
:func:`norm` and
:func:`Mat::convertScale` /
:func:`MatND::convertScale` /cross{SparseMat::convertScale} separately.
2011-04-10 21:37:17 +02:00
In case of sparse matrices, only the non-zero values are analyzed and transformed. Because of this, the range transformation for sparse matrices is not allowed, since it can shift the zero level.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`norm`,
:func:`Mat::convertScale`,
:func:`MatND::convertScale`,
:func:`SparseMat::convertScale`
2011-03-03 08:29:55 +01:00
.. index:: PCA
2011-03-08 23:22:24 +01:00
.. _PCA:
PCA
---
.. c:type:: PCA
2011-02-26 12:05:10 +01:00
Class for Principal Component Analysis ::
class PCA
{
public:
// default constructor
PCA();
// computes PCA for a set of vectors stored as data rows or columns.
PCA(const Mat& data, const Mat& mean, int flags, int maxComponents=0);
// computes PCA for a set of vectors stored as data rows or columns
PCA& operator()(const Mat& data, const Mat& mean, int flags, int maxComponents=0);
// projects vector into the principal components space
Mat project(const Mat& vec) const;
void project(const Mat& vec, Mat& result) const;
// reconstructs the vector from its PC projection
Mat backProject(const Mat& vec) const;
void backProject(const Mat& vec, Mat& result) const;
2011-02-26 12:05:10 +01:00
// eigenvectors of the PC space, stored as the matrix rows
Mat eigenvectors;
// the corresponding eigenvalues; not used for PCA compression/decompression
Mat eigenvalues;
// mean vector, subtracted from the projected vector
// or added to the reconstructed vector
Mat mean;
};
2011-04-10 21:37:17 +02:00
The class ``PCA`` is used to compute a special basis for a set of vectors. The basis will consist of eigenvectors of the covariance matrix computed from the input set of vectors. The class ``PCA`` can also transform vectors to/from the new coordinate space defined by the basis. Usually, in this new coordinate system, each vector from the original set (and any linear combination of such vectors) can be quite accurately approximated by taking just the first few its components, corresponding to the eigenvectors of the largest eigenvalues of the covariance matrix. Geometrically it means that you compute a projection of the vector to a subspace formed by a few eigenvectors corresponding to the dominant eigenvalues of the covariation matrix. And usually such a projection is very close to the original vector. That is, you can represent the original vector from a high-dimensional space with a much shorter vector consisting of the projected vector's coordinates in the subspace. Such a transformation is also known as Karhunen-Loeve Transform, or KLT. See
http://en.wikipedia.org/wiki/Principal\_component\_analysis
2011-04-10 21:37:17 +02:00
The sample below is the function that takes two matrices. The first one stores the set of vectors (a row per vector) that is used to compute PCA. The second one stores another "test" set of vectors (a row per vector) that are first compressed with PCA, then reconstructed back, and then the reconstruction error norm is computed and printed for each vector. ::
PCA compressPCA(const Mat& pcaset, int maxComponents,
const Mat& testset, Mat& compressed)
{
PCA pca(pcaset, // pass the data
2011-04-10 21:37:17 +02:00
Mat(), // there is no pre-computed mean vector,
// so let the PCA engine to compute it
CV_PCA_DATA_AS_ROW, // indicate that the vectors
// are stored as matrix rows
// (use CV_PCA_DATA_AS_COL if the vectors are
// the matrix columns)
2011-04-10 21:37:17 +02:00
maxComponents // specify how many principal components to retain
);
// if there is no test data, just return the computed basis, ready-to-use
if( !testset.data )
return pca;
CV_Assert( testset.cols == pcaset.cols );
2011-02-26 12:05:10 +01:00
compressed.create(testset.rows, maxComponents, testset.type());
2011-02-26 12:05:10 +01:00
Mat reconstructed;
for( int i = 0; i < testset.rows; i++ )
{
Mat vec = testset.row(i), coeffs = compressed.row(i);
// compress the vector, the result will be stored
// in the i-th row of the output matrix
pca.project(vec, coeffs);
// and then reconstruct it
pca.backProject(coeffs, reconstructed);
// and measure the error
printf("
}
return pca;
}
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`calcCovarMatrix`,
:func:`mulTransposed`,
:func:`SVD`,
:func:`dft`,
:func:`dct`
2011-03-03 08:29:55 +01:00
.. index:: PCA::PCA
2011-03-08 23:22:24 +01:00
.. _PCA::PCA:
PCA::PCA
------------
.. c:function:: PCA::PCA()
2011-03-08 23:22:24 +01:00
.. c:function:: PCA::PCA(const Mat& data, const Mat& mean, int flags, int maxComponents=0)
PCA constructors
2011-04-10 21:37:17 +02:00
:param data: Input samples stored as matrix rows or matrix columns.
2011-04-10 21:37:17 +02:00
:param mean: Optional mean value. If the matrix is empty ( ``Mat()`` ), the mean is computed from the data.
2011-04-10 21:37:17 +02:00
:param flags: Operation flags. Currently the parameter is only used to specify the data layout.
2011-04-10 21:37:17 +02:00
* **CV_PCA_DATA_AS_ROWS** Indicate that the input samples are stored as matrix rows.
2011-04-10 21:37:17 +02:00
* **CV_PCA_DATA_AS_COLS** Indicate that the input samples are stored as matrix columns.
2011-04-10 21:37:17 +02:00
:param maxComponents: Maximum number of components that PCA should retain. By default, all the components are retained.
2011-02-26 12:05:10 +01:00
The default constructor initializes empty PCA structure. The second constructor initializes the structure and calls
:func:`PCA::operator ()` .
2011-02-26 12:05:10 +01:00
.. index:: PCA::operator ()
2011-03-08 23:22:24 +01:00
.. _PCA::operator ():
PCA::operator ()
2011-03-08 23:22:24 +01:00
----------------
.. c:function:: PCA& PCA::operator()(const Mat& data, const Mat& mean, int flags, int maxComponents=0)
2011-02-26 12:05:10 +01:00
Performs Principal Component Analysis of the supplied dataset.
2011-04-10 21:37:17 +02:00
:param data: Input samples stored as the matrix rows or as the matrix columns.
2011-04-10 21:37:17 +02:00
:param mean: Optional mean value. If the matrix is empty ( ``Mat()`` ), the mean is computed from the data.
2011-04-10 21:37:17 +02:00
:param flags: Operation flags. Currently the parameter is only used to specify the data layout.
2011-04-10 21:37:17 +02:00
* **CV_PCA_DATA_AS_ROWS** Indicate that the input samples are stored as matrix rows.
2011-04-10 21:37:17 +02:00
* **CV_PCA_DATA_AS_COLS** Indicate that the input samples are stored as matrix columns.
2011-04-10 21:37:17 +02:00
:param maxComponents: Maximum number of components that PCA should retain. By default, all the components are retained.
2011-04-10 21:37:17 +02:00
The operator performs PCA of the supplied dataset. It is safe to reuse the same PCA structure for multiple datasets. That is, if the structure has been previously used with another dataset, the existing internal data is reclaimed and the new ``eigenvalues``,``eigenvectors`` , and ``mean`` are allocated and computed.
2011-02-26 12:05:10 +01:00
The computed eigenvalues are sorted from the largest to the smallest and the corresponding eigenvectors are stored as ``PCA::eigenvectors`` rows.
2011-02-26 12:05:10 +01:00
.. index:: PCA::project
2011-03-08 23:22:24 +01:00
.. _PCA::project:
PCA::project
2011-03-08 23:22:24 +01:00
------------
.. c:function:: Mat PCA::project(const Mat& vec) const
2011-03-08 23:22:24 +01:00
.. c:function:: void PCA::project(const Mat& vec, Mat& result) const
2011-04-10 21:37:17 +02:00
Projects vector(s) to the principal component subspace.
2011-04-10 21:37:17 +02:00
:param vec: Input vector(s). They must have the same dimensionality and the same layout as the input data used at PCA phase. That is, if ``CV_PCA_DATA_AS_ROWS`` are specified, then ``vec.cols==data.cols`` (vectors' dimensionality) and ``vec.rows`` is the number of vectors to project. The same is true for the ``CV_PCA_DATA_AS_COLS`` case.
2011-04-10 21:37:17 +02:00
:param result: Output vectors. In case of ``CV_PCA_DATA_AS_COLS`` , the output matrix has as many columns as the number of input vectors. This means that ``result.cols==vec.cols`` and the number of rows match the number of principal components (for example, ``maxComponents`` parameter passed to the constructor).
2011-04-10 21:37:17 +02:00
The methods project one or more vectors to the principal component subspace, where each vector projection is represented by coefficients in the principal component basis. The first form of the method returns the matrix that the second form writes to the result. So the first form can be used as a part of expression while the second form can be more efficient in a processing loop.
.. index:: PCA::backProject
2011-03-08 23:22:24 +01:00
.. _PCA::backProject:
PCA::backProject
2011-03-08 23:22:24 +01:00
----------------
2011-03-08 23:22:24 +01:00
.. c:function:: Mat PCA::backProject(const Mat& vec) const
.. c:function:: void PCA::backProject(const Mat& vec, Mat& result) const
2011-04-10 21:37:17 +02:00
Reconstructs vectors from their PC projections.
2011-02-26 12:05:10 +01:00
:param vec: Coordinates of the vectors in the principal component subspace. The layout and size are the same as of ``PCA::project`` output vectors.
2011-04-10 21:37:17 +02:00
:param result: Reconstructed vectors. The layout and size are the same as of ``PCA::project`` input vectors.
2011-02-26 12:05:10 +01:00
The methods are inverse operations to
2011-04-10 21:37:17 +02:00
:func:`PCA::project` . They take PC coordinates of projected vectors and reconstruct the original vectors. Of course, unless all the principal components have been retained, the reconstructed vectors are different from the originals. But typically, the difference is small if the number of components is large enough (but still much smaller than the original vector dimensionality). As a result, PCA is used.
.. index:: perspectiveTransform
2011-03-08 23:22:24 +01:00
.. _perspectiveTransform:
perspectiveTransform
2011-03-08 23:22:24 +01:00
--------------------
.. c:function:: void perspectiveTransform(const Mat& src, Mat& dst, const Mat& mtx )
2011-04-10 21:37:17 +02:00
Performs the perspective matrix transformation of vectors.
2011-04-10 21:37:17 +02:00
:param src: Source two-channel or three-channel floating-point array. Each element is a 2D/3D vector to be transformed.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mtx: :math:`3\times 3` or :math:`4 \times 4` transformation matrix.
2011-04-10 21:37:17 +02:00
The function ``perspectiveTransform`` transforms every element of ``src``by treating it as a 2D or 3D vector, in the following way:
.. math::
2011-02-26 12:05:10 +01:00
(x, y, z) \rightarrow (x'/w, y'/w, z'/w)
where
.. math::
2011-02-26 12:05:10 +01:00
(x', y', z', w') = \texttt{mat} \cdot \begin{bmatrix} x & y & z & 1 \end{bmatrix}
and
.. math::
2011-02-26 12:05:10 +01:00
w = \fork{w'}{if $w' \ne 0$}{\infty}{otherwise}
2011-04-10 21:37:17 +02:00
Here a 3D vector transformation is shown. In case of a 2D vector transformation, the
:math:`z` component is omitted.
**Note**:
The function transforms a sparse set of 2D or 3D vectors. If you want to transform an image using perspective transformation, use
:func:`warpPerspective` . If you have an inverse task, that is, you want to compute the most probable perspective transformation out of several pairs of corresponding points, you can use
2011-02-26 12:05:10 +01:00
:func:`getPerspectiveTransform` or
:func:`findHomography` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`transform`,
:func:`warpPerspective`,
:func:`getPerspectiveTransform`,
:func:`findHomography`
2011-03-03 08:29:55 +01:00
.. index:: phase
2011-03-08 23:22:24 +01:00
.. _phase:
phase
2011-03-08 23:22:24 +01:00
-----
.. c:function:: void phase(const Mat& x, const Mat& y, Mat& angle, bool angleInDegrees=false)
2011-04-10 21:37:17 +02:00
Calculates the rotation angle of 2d vectors.
2011-04-10 21:37:17 +02:00
:param x: Source floating-point array of x-coordinates of 2D vectors.
2011-04-10 21:37:17 +02:00
:param y: Source array of y-coordinates of 2D vectors. It must have the same size and the same type as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param angle: Destination array of vector angles. It has the same size and same type as ``x`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param angleInDegrees: When it is true, the function computes the angle in degrees. Otherwise, they are measured in radians.
2011-02-26 12:05:10 +01:00
The function ``phase`` computes the rotation angle of each 2D vector that is formed from the corresponding elements of ``x`` and ``y`` :
.. math::
2011-03-08 23:22:24 +01:00
\texttt{angle} (I) = \texttt{atan2} ( \texttt{y} (I), \texttt{x} (I))
2011-02-26 12:05:10 +01:00
The angle estimation accuracy is
:math:`\sim\,0.3^\circ` , when ``x(I)=y(I)=0`` , the corresponding ``angle`` (I) is set to
:math:`0` .
2011-04-07 22:29:59 +02:00
See Also:
.. index:: polarToCart
2011-03-08 23:22:24 +01:00
.. _polarToCart:
polarToCart
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: void polarToCart(const Mat& magnitude, const Mat& angle, Mat& x, Mat& y, bool angleInDegrees=false)
Computes x and y coordinates of 2D vectors from their magnitude and angle.
2011-04-10 21:37:17 +02:00
:param magnitude: Source floating-point array of magnitudes of 2D vectors. It can be an empty matrix ( ``=Mat()`` ). In this case, the function assumes that all the magnitudes are =1. If it is not empty, it must have the same size and type as ``angle`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param angle: Source floating-point array of angles of the 2D vectors.
2011-04-10 21:37:17 +02:00
:param x: Destination array of x-coordinates of 2D vectors. It has the same size and type as ``angle`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param y: Destination array of y-coordinates of 2D vectors. It has the same size and type as ``angle`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param angleInDegrees: When it is true, the input angles are measured in degrees. Otherwise. they are measured in radians.
2011-04-10 21:37:17 +02:00
The function ``polarToCart`` computes the Cartesian coordinates of each 2D vector represented by the corresponding elements of ``magnitude`` and ``angle`` :
.. math::
2011-02-26 12:05:10 +01:00
\begin{array}{l} \texttt{x} (I) = \texttt{magnitude} (I) \cos ( \texttt{angle} (I)) \\ \texttt{y} (I) = \texttt{magnitude} (I) \sin ( \texttt{angle} (I)) \\ \end{array}
2011-02-26 12:05:10 +01:00
The relative accuracy of the estimated coordinates is
:math:`\sim\,10^{-6}` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`cartToPolar`,
:func:`magnitude`,
:func:`phase`,
:func:`exp`,
:func:`log`,
:func:`pow`,
:func:`sqrt`
2011-03-03 08:29:55 +01:00
.. index:: pow
2011-03-08 23:22:24 +01:00
.. _pow:
pow
2011-03-08 23:22:24 +01:00
---
.. c:function:: void pow(const Mat& src, double p, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void pow(const MatND& src, double p, MatND& dst)
Raises every array element to a power.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param p: Exponent of power.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
The function ``pow`` raises every element of the input array to ``p`` :
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \fork{\texttt{src}(I)^p}{if \texttt{p} is integer}{|\texttt{src}(I)|^p}{otherwise}
2011-04-10 21:37:17 +02:00
That is, for a non-integer power exponent, the absolute values of input array elements are used. However, it is possible to get true values for negative values using some extra operations. In the example below, computing the 5th root of array ``src`` shows: ::
Mat mask = src < 0;
pow(src, 1./5, dst);
subtract(Scalar::all(0), dst, dst, mask);
2011-04-10 21:37:17 +02:00
For some values of ``p`` , such as integer values, 0.5 and -0.5, specialized faster algorithms are used.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`sqrt`,
:func:`exp`,
:func:`log`,
:func:`cartToPolar`,
:func:`polarToCart`
2011-03-08 23:22:24 +01:00
.. index:: RNG
.. _RNG:
RNG
2011-02-26 12:05:10 +01:00
---
2011-04-10 21:37:17 +02:00
Random number generator class ::
class CV_EXPORTS RNG
{
public:
enum { UNIFORM=0, NORMAL=1 };
2011-02-26 12:05:10 +01:00
// constructors
RNG();
RNG(uint64 state);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// returns a 32-bit unsigned random number
unsigned next();
2011-02-26 12:05:10 +01:00
// return random numbers of the specified type
operator uchar();
operator schar();
operator ushort();
operator short();
operator unsigned();
// returns a random integer sampled uniformly from [0, N).
unsigned operator()(unsigned N);
unsigned operator()();
operator int();
operator float();
operator double();
// returns a random number sampled uniformly from [a, b) range
int uniform(int a, int b);
float uniform(float a, float b);
double uniform(double a, double b);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// returns the Gaussian random number with zero mean.
double gaussian(double sigma);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// fills thec array with random numbers sampled from the specified distribution
void fill( Mat& mat, int distType, const Scalar& a, const Scalar& b );
void fill( MatND& mat, int distType, const Scalar& a, const Scalar& b );
2011-02-26 12:05:10 +01:00
// internal state of the RNG (could change in the future)
uint64 state;
};
2011-04-10 21:37:17 +02:00
The class ``RNG`` implements the random number generator. It encapsulates the RNG state (currently, a 64-bit integer) and has methods to return scalar random values and to fill arrays with random values. Currently it supports uniform and Gaussian (normal) distributions. The generator uses Multiply-With-Carry algorithm, introduced by G. Marsaglia (
http://en.wikipedia.org/wiki/Multiply-with-carry
2011-04-10 21:37:17 +02:00
). Gaussian-distribution random numbers are generated using the Ziggurat algorithm (
http://en.wikipedia.org/wiki/Ziggurat_algorithm
2011-02-26 12:05:10 +01:00
), introduced by G. Marsaglia and W. W. Tsang.
.. index:: RNG::RNG
2011-03-08 23:22:24 +01:00
.. _RNG::RNG:
RNG::RNG
------------
.. c:function:: RNG::RNG()
.. c:function:: RNG::RNG(uint64 state)
RNG constructors
2011-04-10 21:37:17 +02:00
:param state: 64-bit value used to initialize the RNG.
2011-04-10 21:37:17 +02:00
These are the RNG constructors. The first form sets the state to some pre-defined value, equal to ``2**32-1`` in the current implementation. The second form sets the state to the specified value. If you passed ``state=0`` , the constructor uses the above default value instead to avoid the singular random number sequence, consisting of all zeros.
.. index:: RNG::next
2011-03-08 23:22:24 +01:00
.. _RNG::next:
RNG::next
-------------
.. c:function:: unsigned RNG::next()
2011-04-10 21:37:17 +02:00
Returns the next random number.
2011-04-10 21:37:17 +02:00
The method updates the state using the MWC algorithm and returns the next 32-bit random number.
.. index:: RNG::operator T
2011-03-08 23:22:24 +01:00
.. _RNG::operator T:
RNG::operator T
2011-03-08 23:22:24 +01:00
---------------
.. cpp:function:: RNG::operator uchar()
.. cpp:function:: RNG::operator schar()
.. cpp:function:: RNG::operator ushort()
.. cpp:function:: RNG::operator short()
.. cpp:function:: RNG::operator int()
.. cpp:function:: RNG::operator float()
.. cpp:function:: RNG::operator double()
2011-04-10 21:37:17 +02:00
Returns the next random number of the specified type.
2011-04-10 21:37:17 +02:00
Each of the methods updates the state using the MWC algorithm and returns the next random number of the specified type. In case of integer types, the returned number is from the available value range for the specified type. In case of floating-point types, the returned value is from ``[0,1)`` range.
.. index:: RNG::operator ()
2011-03-08 23:22:24 +01:00
.. _RNG::operator ():
RNG::operator ()
--------------------
.. c:function:: unsigned RNG::operator ()()
.. c:function:: unsigned RNG::operator ()(unsigned N)
2011-04-10 21:37:17 +02:00
Returns the next random number.
2011-04-10 21:37:17 +02:00
:param N: Upper non-inclusive boundary of the returned random number.
2011-04-10 21:37:17 +02:00
The methods transform the state using the MWC algorithm and return the next random number. The first form is equivalent to
:func:`RNG::next` . The second form returns the random number modulo ``N`` , which means that the result is in the range ``[0, N)`` .
.. index:: RNG::uniform
2011-03-08 23:22:24 +01:00
.. _RNG::uniform:
RNG::uniform
----------------
.. c:function:: int RNG::uniform(int a, int b)
.. c:function:: float RNG::uniform(float a, float b)
.. c:function:: double RNG::uniform(double a, double b)
2011-04-10 21:37:17 +02:00
Returns the next random number sampled from the uniform distribution.
2011-04-10 21:37:17 +02:00
:param a: Lower inclusive boundary of the returned random numbers.
2011-04-10 21:37:17 +02:00
:param b: Upper non-inclusive boundary of the returned random numbers.
2011-04-10 21:37:17 +02:00
The methods transform the state using the MWC algorithm and return the next uniformly-distributed random number of the specified type, deduced from the input parameter type, from the range ``[a, b)`` . There is a nuance illustrated by the following sample: ::
RNG rng;
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// always produces 0
double a = rng.uniform(0, 1);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// produces double from [0, 1)
double a1 = rng.uniform((double)0, (double)1);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// produces float from [0, 1)
double b = rng.uniform(0.f, 1.f);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// produces double from [0, 1)
double c = rng.uniform(0., 1.);
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// may cause compiler error because of ambiguity:
// RNG::uniform(0, (int)0.999999)? or RNG::uniform((double)0, 0.99999)?
double d = rng.uniform(0, 0.999999);
2011-04-10 21:37:17 +02:00
The compiler does not take into account the type of the variable to which you assign the result of ``RNG::uniform`` . The only thing that matters to the compiler is the type of ``a`` and ``b`` parameters. So, if you want a floating-point random number, but the range boundaries are integer numbers, either put dots in the end, if they are constants, or use explicit type cast operators, as in the ``a1`` initialization above.
.. index:: RNG::gaussian
2011-03-08 23:22:24 +01:00
.. _RNG::gaussian:
RNG::gaussian
-----------------
.. c:function:: double RNG::gaussian(double sigma)
2011-04-10 21:37:17 +02:00
Returns the next random number sampled from the Gaussian distribution.
2011-04-10 21:37:17 +02:00
:param sigma: Standard deviation of the distribution.
2011-04-10 21:37:17 +02:00
The method transforms the state using the MWC algorithm and returns the next random number from the Gaussian distribution ``N(0,sigma)`` . That is, the mean value of the returned random numbers is zero and the standard deviation is the specified ``sigma`` .
.. index:: RNG::fill
2011-03-08 23:22:24 +01:00
.. _RNG::fill:
RNG::fill
-------------
2011-03-08 23:22:24 +01:00
.. c:function:: void RNG::fill( Mat& mat, int distType, const Scalar& a, const Scalar& b )
2011-03-08 23:22:24 +01:00
.. c:function:: void RNG::fill( MatND& mat, int distType, const Scalar& a, const Scalar& b )
2011-04-10 21:37:17 +02:00
Fills arrays with random numbers.
2011-02-26 12:05:10 +01:00
:param mat: 2D or N-dimensional matrix. Currently matrices with more than 4 channels are not supported by the methods. Use :func:`reshape` as a possible workaround.
2011-04-10 21:37:17 +02:00
:param distType: Distribution type, ``RNG::UNIFORM`` or ``RNG::NORMAL`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param a: The first distribution parameter. In case of the uniform distribution, this is an inclusive lower boundary. In case of the normal distribution, this is a mean value.
2011-04-10 21:37:17 +02:00
:param b: The second distribution parameter. In case of the uniform distribution, this is a non-inclusive upper boundary. In case of the normal distribution, this is a standard deviation.
2011-04-10 21:37:17 +02:00
Each of the methods fills the matrix with the random values from the specified distribution. As the new numbers are generated, the RNG state is updated accordingly. In case of multiple-channel images, every channel is filled independently, which means that RNG cannot generate samples from the multi-dimensional Gaussian distribution with non-diagonal covariation matrix directly. To do that, first, generate matrix from the distribution
:math:`N(0, I_n)` (Gaussian distribution with zero mean and identity covariation matrix) and then transform it using
2011-02-26 12:05:10 +01:00
:func:`transform` and the specific covariation matrix.
.. index:: randu
2011-03-08 23:22:24 +01:00
.. _randu:
randu
2011-03-08 23:22:24 +01:00
-----
.. c:function:: template<typename _Tp> _Tp randu()
2011-03-08 23:22:24 +01:00
.. c:function:: void randu(Mat& mtx, const Scalar& low, const Scalar& high)
2011-04-10 21:37:17 +02:00
Generates a single uniformly-distributed random number or an array of random numbers.
2011-04-10 21:37:17 +02:00
:param mtx: Output array of random numbers. The array must be pre-allocated and have 1 to 4 channels.
2011-04-10 21:37:17 +02:00
:param low: Inclusive lower boundary of the generated random numbers.
2011-04-10 21:37:17 +02:00
:param high: Exclusive upper boundary of the generated random numbers.
2011-04-10 21:37:17 +02:00
The template functions ``randu`` generate and return the next uniformly-distributed random value of the specified type. ``randu<int>()`` is an equivalent to ``(int)theRNG();`` , and so on. See
2011-02-26 12:05:10 +01:00
:func:`RNG` description.
2011-02-26 12:05:10 +01:00
The second non-template variant of the function fills the matrix ``mtx`` with uniformly-distributed random numbers from the specified range:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{low} _c \leq \texttt{mtx} (I)_c < \texttt{high} _c
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`RNG`,
:func:`randn`,
:func:`theRNG`
.. index:: randn
2011-03-08 23:22:24 +01:00
.. _randn:
randn
2011-03-08 23:22:24 +01:00
-----
.. c:function:: void randn(Mat& mtx, const Scalar& mean, const Scalar& stddev)
2011-04-10 21:37:17 +02:00
Fills the array with normally distributed random numbers.
2011-04-10 21:37:17 +02:00
:param mtx: Output array of random numbers. The array must be pre-allocated and have 1 to 4 channels.
2011-04-10 21:37:17 +02:00
:param mean: Mean value (expectation) of the generated random numbers.
2011-04-10 21:37:17 +02:00
:param stddev: Standard deviation of the generated random numbers.
2011-02-26 12:05:10 +01:00
The function ``randn`` fills the matrix ``mtx`` with normally distributed random numbers with the specified mean and standard deviation.
2011-04-10 21:37:17 +02:00
?? is applied to the generated numbers (that is, the values are clipped)
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`RNG`,
:func:`randu`
2011-03-03 08:29:55 +01:00
.. index:: randShuffle
2011-03-08 23:22:24 +01:00
.. randShuffle:
randShuffle
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: void randShuffle(Mat& mtx, double iterFactor=1., RNG* rng=0)
2011-04-10 21:37:17 +02:00
Shuffles the array elements randomly.
2011-04-10 21:37:17 +02:00
:param mtx: Input/output numerical 1D array.
2011-04-10 21:37:17 +02:00
:param iterFactor: Scale factor that determines the number of random swap operations. See the details below.
2011-04-10 21:37:17 +02:00
:param rng: Optional random number generator used for shuffling. If it is zero, :func:`theRNG` () is used instead.
2011-04-10 21:37:17 +02:00
The function ``randShuffle`` shuffles the specified 1D array by randomly choosing pairs of elements and swapping them. The number of such swap operations will be ``mtx.rows*mtx.cols*iterFactor`` .
See Also:
:func:`RNG`,
:func:`sort`
2011-03-03 08:29:55 +01:00
.. index:: reduce
2011-03-08 23:22:24 +01:00
.. _reduce:
reduce
2011-03-08 23:22:24 +01:00
------
.. c:function:: void reduce(const Mat& mtx, Mat& vec, int dim, int reduceOp, int dtype=-1)
2011-04-10 21:37:17 +02:00
Reduces a matrix to a vector.
2011-04-10 21:37:17 +02:00
:param mtx: Source 2D matrix.
2011-04-10 21:37:17 +02:00
:param vec: Destination vector. Its size and type is defined by ``dim`` and ``dtype`` parameters.
2011-04-10 21:37:17 +02:00
:param dim: Dimension index along which the matrix is reduced. 0 means that the matrix is reduced to a single row. 1 means that the matrix is reduced to a single column.
2011-04-10 21:37:17 +02:00
:param reduceOp: Reduction operation that could be one of the following:
2011-04-10 21:37:17 +02:00
* **CV_REDUCE_SUM** The output is the sum of all rows/columns of the matrix.
2011-04-10 21:37:17 +02:00
* **CV_REDUCE_AVG** The output is the mean vector of all rows/columns of the matrix.
2011-04-10 21:37:17 +02:00
* **CV_REDUCE_MAX** The output is the maximum (column/row-wise) of all rows/columns of the matrix.
2011-04-10 21:37:17 +02:00
* **CV_REDUCE_MIN** The output is the minimum (column/row-wise) of all rows/columns of the matrix.
2011-04-10 21:37:17 +02:00
:param dtype: When it is negative, the destination vector will have the same type as the source matrix. Otherwise, its type will be ``CV_MAKE_TYPE(CV_MAT_DEPTH(dtype), mtx.channels())`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
The function ``reduce`` reduces the matrix to a vector by treating the matrix rows/columns as a set of 1D vectors and performing the specified operation on the vectors until a single row/column is obtained. For example, the function can be used to compute horizontal and vertical projections of a raster image. In case of ``CV_REDUCE_SUM`` and ``CV_REDUCE_AVG`` , the output may have a larger element bit-depth to preserve accuracy. And multi-channel arrays are also supported in these two reduction modes.
2011-04-07 22:29:59 +02:00
See Also: :func:`repeat`
2011-03-03 08:29:55 +01:00
.. index:: repeat
2011-03-08 23:22:24 +01:00
.. _repeat:
repeat
2011-03-08 23:22:24 +01:00
------
2011-03-08 23:22:24 +01:00
.. c:function:: void repeat(const Mat& src, int ny, int nx, Mat& dst)
.. c:function:: Mat repeat(const Mat& src, int ny, int nx)
2011-04-10 21:37:17 +02:00
Fills the destination array with repeated copies of the source array.
2011-04-10 21:37:17 +02:00
:param src: Source array to replicate.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param ny: Flag to specify how many times the ``src`` is repeated along the vertical axis.
2011-04-10 21:37:17 +02:00
:param nx: Flag to specify how many times the ``src`` is repeated along the horizontal axis.
2011-02-26 12:05:10 +01:00
The functions
:func:`repeat` duplicate the source array one or more times along each of the two axes:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} _{ij}= \texttt{src} _{i \mod \texttt{src.rows} , \; j \mod \texttt{src.cols} }
2011-02-26 12:05:10 +01:00
The second variant of the function is more convenient to use with
2011-04-10 21:37:17 +02:00
:ref:`MatrixExpressions` .
See Also:
:func:`reduce`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: saturate_cast
2011-03-08 23:22:24 +01:00
.. _saturate_cast_:
saturate_cast
-------------
2011-03-08 23:22:24 +01:00
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(unsigned char v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(signed char v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(unsigned short v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(signed short v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(int v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(unsigned int v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(float v)
.. c:function:: template<typename _Tp> inline _Tp saturate_cast(double v)
2011-04-10 21:37:17 +02:00
Template function for accurate conversion from one primitive type to another.
2011-04-10 21:37:17 +02:00
:param v: Function parameter.
2011-04-10 21:37:17 +02:00
The functions ``saturate_cast`` resemble the standard C++ cast operations, such as ``static_cast<T>()`` and others. They perform an efficient and accurate conversion from one primitive type to another (see the introduction chapter). ``saturate`` in the name means that when the input value ``v`` is out of the range of the target type, the result is not formed just by taking low bits of the input, but instead the value is clipped. For example: ::
uchar a = saturate_cast<uchar>(-100); // a = 0 (UCHAR_MIN)
short b = saturate_cast<short>(33333.33333); // b = 32767 (SHRT_MAX)
2011-04-10 21:37:17 +02:00
Such clipping is done when the target type is ``unsigned char`` , ``signed char`` , ``unsigned short`` or ``signed short`` . For 32-bit integers, no clipping is done.
2011-04-10 21:37:17 +02:00
When the parameter is a floating-point value and the target type is an integer (8-, 16- or 32-bit), the floating-point value is first rounded to the nearest integer and then clipped if needed (when the target type is 8- or 16-bit).
2011-04-10 21:37:17 +02:00
This operation is used in the simplest or most complex image processing functions in OpenCV.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`add`,
:func:`subtract`,
:func:`multiply`,
:func:`divide`,
:func:`Mat::convertTo`
2011-03-03 08:29:55 +01:00
.. index:: scaleAdd
2011-03-08 23:22:24 +01:00
.. _scaleAdd:
scaleAdd
2011-03-08 23:22:24 +01:00
--------
.. c:function:: void scaleAdd(const Mat& src1, double scale, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void scaleAdd(const MatND& src1, double scale, const MatND& src2, MatND& dst)
Calculates the sum of a scaled array and another array.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param scale: Scale factor for the first array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` .
2011-03-03 08:29:55 +01:00
The function ``scaleAdd`` is one of the classical primitive linear algebra operations, known as ``DAXPY`` or ``SAXPY`` in `BLAS <http://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms>`_. It calculates the sum of a scaled array and another array:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I)= \texttt{scale} \cdot \texttt{src1} (I) + \texttt{src2} (I)
2011-02-26 12:05:10 +01:00
The function can also be emulated with a matrix expression, for example: ::
Mat A(3, 3, CV_64F);
...
A.row(0) = A.row(1)*2 + A.row(2);
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`add`,
:func:`addWeighted`,
:func:`subtract`,
:func:`Mat::dot`,
:func:`Mat::convertTo`,
:ref:`MatrixExpressions`
2011-03-03 08:29:55 +01:00
.. index:: setIdentity
2011-03-08 23:22:24 +01:00
.. _setIdentity:
setIdentity
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: void setIdentity(Mat& dst, const Scalar& value=Scalar(1))
2011-04-10 21:37:17 +02:00
Initializes a scaled identity matrix.
2011-04-10 21:37:17 +02:00
:param dst: Matrix to initialize (not necessarily square).
2011-04-10 21:37:17 +02:00
:param value: Value to assign to diagonal elements.
2011-02-26 12:05:10 +01:00
The function
:func:`setIdentity` initializes a scaled identity matrix:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (i,j)= \fork{\texttt{value}}{ if $i=j$}{0}{otherwise}
2011-02-26 12:05:10 +01:00
The function can also be emulated using the matrix initializers and the matrix expressions: ::
Mat A = Mat::eye(4, 3, CV_32F)*5;
// A will be set to [[5, 0, 0], [0, 5, 0], [0, 0, 5], [0, 0, 0]]
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`Mat::zeros`,
:func:`Mat::ones`,
:ref:`MatrixExpressions`,
:func:`Mat::setTo`,
:func:`Mat::operator=`
2011-03-08 23:22:24 +01:00
.. index:: solve
2011-03-08 23:22:24 +01:00
.. _solve:
solve
2011-03-08 23:22:24 +01:00
-----
.. c:function:: bool solve(const Mat& src1, const Mat& src2, Mat& dst, int flags=DECOMP_LU)
Solves one or more linear systems or least-squares problems.
2011-04-10 21:37:17 +02:00
:param src1: Input matrix on the left-hand side of the system.
2011-04-10 21:37:17 +02:00
:param src2: Input matrix on the right-hand side of the system.
2011-04-10 21:37:17 +02:00
:param dst: Output solution.
2011-04-10 21:37:17 +02:00
:param flags: Solution (matrix inversion) method.
2011-04-10 21:37:17 +02:00
* **DECOMP_LU** Gaussian elimination with optimal pivot element chosen.
2011-04-10 21:37:17 +02:00
* **DECOMP_CHOLESKY** Cholesky :math:`LL^T` factorization. The matrix ``src1`` must be symmetrical and positively defined.
2011-04-10 21:37:17 +02:00
* **DECOMP_EIG** Eigenvalue decomposition. The matrix ``src1`` must be symmetrical.
2011-04-10 21:37:17 +02:00
* **DECOMP_SVD** Singular value decomposition (SVD) method. The system can be over-defined and/or the matrix ``src1`` can be singular.
2011-04-10 21:37:17 +02:00
* **DECOMP_QR** QR factorization. The system can be over-defined and/or the matrix ``src1`` can be singular.
2011-04-10 21:37:17 +02:00
* **DECOMP_NORMAL** While all the previous flags are mutually exclusive, this flag can be used together with any of the previous. It means that the normal equations :math:`\texttt{src1}^T\cdot\texttt{src1}\cdot\texttt{dst}=\texttt{src1}^T\texttt{src2}` are solved instead of the original system :math:`\texttt{src1}\cdot\texttt{dst}=\texttt{src2}` .
2011-03-03 08:29:55 +01:00
The function ``solve`` solves a linear system or least-squares problem (the latter is possible with SVD or QR methods, or by specifying the flag ``DECOMP_NORMAL`` ):
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} = \arg \min _X \| \texttt{src1} \cdot \texttt{X} - \texttt{src2} \|
2011-02-26 12:05:10 +01:00
If ``DECOMP_LU`` or ``DECOMP_CHOLESKY`` method is used, the function returns 1 if ``src1`` (or
2011-04-10 21:37:17 +02:00
:math:`\texttt{src1}^T\texttt{src1}` ) is non-singular. Otherwise, it returns 0. In the latter case, ``dst`` is not valid. Other methods find a pseudo-solution in case of a singular left-hand side part.
**Note**
2011-04-10 21:37:17 +02:00
If you want to find a unity-norm solution of an under-defined singular system
2011-02-26 12:05:10 +01:00
:math:`\texttt{src1}\cdot\texttt{dst}=0` , the function ``solve`` will not do the work. Use
:func:`SVD::solveZ` instead.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`invert`,
:func:`SVD`,
:func:`eigen`
2011-03-03 08:29:55 +01:00
.. index:: solveCubic
2011-03-08 23:22:24 +01:00
.. _solveCubic:
solveCubic
--------------
2011-03-08 23:22:24 +01:00
.. c:function:: void solveCubic(const Mat& coeffs, Mat& roots)
Finds the real roots of a cubic equation.
2011-04-10 21:37:17 +02:00
:param coeffs: Equation coefficients, an array of 3 or 4 elements.
2011-04-10 21:37:17 +02:00
:param roots: Destination array of real roots that has 1 or 3 elements.
2011-02-26 12:05:10 +01:00
The function ``solveCubic`` finds the real roots of a cubic equation:
2011-04-10 21:37:17 +02:00
(if ``coeffs`` is a 4-element vector)
.. math::
2011-02-26 12:05:10 +01:00
\texttt{coeffs} [0] x^3 + \texttt{coeffs} [1] x^2 + \texttt{coeffs} [2] x + \texttt{coeffs} [3] = 0
2011-04-10 21:37:17 +02:00
or (if ``coeffs`` is a 3-element vector):
.. math::
2011-02-26 12:05:10 +01:00
x^3 + \texttt{coeffs} [0] x^2 + \texttt{coeffs} [1] x + \texttt{coeffs} [2] = 0
2011-04-10 21:37:17 +02:00
The roots are stored in the ``roots`` array.
.. index:: solvePoly
2011-03-08 23:22:24 +01:00
.. _solvePoly:
solvePoly
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void solvePoly(const Mat& coeffs, Mat& roots, int maxIters=20, int fig=100)
2011-04-10 21:37:17 +02:00
Finds the real or complex roots of a polynomial equation.
2011-04-10 21:37:17 +02:00
:param coeffs: Array of polynomial coefficients.
2011-04-10 21:37:17 +02:00
:param roots: Destination (complex) array of roots.
2011-04-10 21:37:17 +02:00
:param maxIters: Maximum number of iterations the algorithm does.
2011-02-26 12:05:10 +01:00
:param fig:
2011-02-26 12:05:10 +01:00
The function ``solvePoly`` finds real and complex roots of a polynomial equation:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{coeffs} [0] x^{n} + \texttt{coeffs} [1] x^{n-1} + ... + \texttt{coeffs} [n-1] x + \texttt{coeffs} [n] = 0
.. index:: sort
2011-03-08 23:22:24 +01:00
.. _sort:
sort
2011-03-08 23:22:24 +01:00
----
.. c:function:: void sort(const Mat& src, Mat& dst, int flags)
2011-04-10 21:37:17 +02:00
Sorts each row or each column of a matrix.
2011-04-10 21:37:17 +02:00
:param src: Source single-channel array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: Operation flags, a combination of the following values:
2011-04-10 21:37:17 +02:00
* **CV_SORT_EVERY_ROW** Each matrix row is sorted independently.
2011-04-10 21:37:17 +02:00
* **CV_SORT_EVERY_COLUMN** Each matrix column is sorted independently. This flag and the previous one are mutually exclusive.
2011-04-10 21:37:17 +02:00
* **CV_SORT_ASCENDING** Each matrix row is sorted in the ascending order.
2011-04-10 21:37:17 +02:00
* **CV_SORT_DESCENDING** Each matrix row is sorted in the descending order. This flag and the previous one are also mutually exclusive.
2011-02-26 12:05:10 +01:00
The function ``sort`` sorts each matrix row or each matrix column in ascending or descending order. If you want to sort matrix rows or columns lexicographically, you can use STL ``std::sort`` generic function with the proper comparison predicate.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`sortIdx`,
:func:`randShuffle`
2011-03-03 08:29:55 +01:00
.. index:: sortIdx
2011-03-08 23:22:24 +01:00
.. _sortIdx:
sortIdx
2011-03-08 23:22:24 +01:00
-------
.. c:function:: void sortIdx(const Mat& src, Mat& dst, int flags)
2011-04-10 21:37:17 +02:00
Sorts each row or each column of a matrix.
2011-04-10 21:37:17 +02:00
:param src: Source single-channel array.
2011-04-10 21:37:17 +02:00
:param dst: Destination integer array of the same size as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param flags: Operation flags that could be a combination of the following values:
2011-04-10 21:37:17 +02:00
* **CV_SORT_EVERY_ROW** Each matrix row is sorted independently.
2011-04-10 21:37:17 +02:00
* **CV_SORT_EVERY_COLUMN** Each matrix column is sorted independently. This flag and the previous one are mutually exclusive.
2011-04-10 21:37:17 +02:00
* **CV_SORT_ASCENDING** Each matrix row is sorted in the ascending order.
2011-04-10 21:37:17 +02:00
* **CV_SORT_DESCENDING** Each matrix row is sorted in the descending order. This flag and the previous one are also mutually exclusive.
2011-04-10 21:37:17 +02:00
The function ``sortIdx`` sorts each matrix row or each matrix column in the ascending or descending order. Instead of reordering the elements themselves, it stores the indices of sorted elements in the destination array. For example: ::
Mat A = Mat::eye(3,3,CV_32F), B;
sortIdx(A, B, CV_SORT_EVERY_ROW + CV_SORT_ASCENDING);
// B will probably contain
// (because of equal elements in A some permutations are possible):
// [[1, 2, 0], [0, 2, 1], [0, 1, 2]]
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`sort`,
:func:`randShuffle`
2011-03-03 08:29:55 +01:00
.. index:: split
2011-03-08 23:22:24 +01:00
.. _split:
split
2011-03-08 23:22:24 +01:00
-----
2011-03-08 23:22:24 +01:00
.. c:function:: void split(const Mat& mtx, Mat* mv)
2011-03-08 23:22:24 +01:00
.. c:function:: void split(const Mat& mtx, vector<Mat>& mv)
2011-03-08 23:22:24 +01:00
.. c:function:: void split(const MatND& mtx, MatND* mv)
.. c:function:: void split(const MatND& mtx, vector<MatND>& mv)
2011-04-10 21:37:17 +02:00
Divides a multi-channel array into several single-channel arrays.
2011-04-10 21:37:17 +02:00
:param mtx: Source multi-channel array.
2011-04-10 21:37:17 +02:00
:param mv: Destination array or vector of arrays. The number of arrays must match ``mtx.channels()`` . The arrays themselves are reallocated, if needed.
2011-04-10 21:37:17 +02:00
The functions ``split`` split a multi-channel array into separate single-channel arrays:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{mv} [c](I) = \texttt{mtx} (I)_c
2011-04-10 21:37:17 +02:00
If you need to extract a single channel or do some other sophisticated channel permutation, use
:func:`mixChannels` .
See Also:
:func:`merge`,
:func:`mixChannels`,
:func:`cvtColor`
2011-03-03 08:29:55 +01:00
.. index:: sqrt
2011-03-08 23:22:24 +01:00
.. _sqrt:
sqrt
2011-03-08 23:22:24 +01:00
----
.. c:function:: void sqrt(const Mat& src, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void sqrt(const MatND& src, MatND& dst)
2011-04-10 21:37:17 +02:00
Calculates a quare root of array elements.
2011-04-10 21:37:17 +02:00
:param src: Source floating-point array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
The functions ``sqrt`` calculate a square root of each source array element. In case of multi-channel arrays, each channel is processed independently. The accuracy is approximately the same as of the built-in ``std::sqrt`` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`pow`,
:func:`magnitude`
2011-03-03 08:29:55 +01:00
.. index:: subtract
2011-03-08 23:22:24 +01:00
.. _subtract:
subtract
2011-03-08 23:22:24 +01:00
--------
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const Mat& src1, const Mat& src2, Mat& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const Mat& src1, const Mat& src2, Mat& dst, const Mat& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const Mat& src1, const Scalar& sc, Mat& dst, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const Scalar& sc, const Mat& src2, Mat& dst, const Mat& mask=Mat())
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const MatND& src1, const MatND& src2, MatND& dst)
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const MatND& src1, const MatND& src2, MatND& dst, const MatND& mask)
2011-03-08 23:22:24 +01:00
.. c:function:: void subtract(const MatND& src1, const Scalar& sc, MatND& dst, const MatND& mask=MatND())
.. c:function:: void subtract(const Scalar& sc, const MatND& src2, MatND& dst, const MatND& mask=MatND())
2011-04-10 21:37:17 +02:00
Calculates the per-element difference between two arrays or array and a scalar.
2011-04-10 21:37:17 +02:00
:param src1: The first source array.
2011-04-10 21:37:17 +02:00
:param src2: The second source array. It must have the same size and same type as ``src1`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param sc: Scalar that could be the first or the second input parameter.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and type as ``src1`` . See ``Mat::create`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mask: Optional operation mask. This is an 8-bit single channel array that specifies elements of the destination array to be changed.
2011-04-10 21:37:17 +02:00
The functions ``subtract`` compute the following values:
*
2011-04-10 21:37:17 +02:00
Difference between two arrays
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} ( \texttt{src1} (I) - \texttt{src2} (I)) \quad \texttt{if mask} (I) \ne0
*
2011-04-10 21:37:17 +02:00
Difference between an array and a scalar:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} ( \texttt{src1} (I) - \texttt{sc} ) \quad \texttt{if mask} (I) \ne0
*
2011-04-10 21:37:17 +02:00
Difference between a scalar and an array:
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{saturate} ( \texttt{sc} - \texttt{src2} (I)) \quad \texttt{if mask} (I) \ne0
2011-04-10 21:37:17 +02:00
where ``I`` is a multi-dimensional index of the array elements.
2011-02-26 12:05:10 +01:00
The first function in the above list can be replaced with matrix expressions: ::
dst = src1 - src2;
dst -= src2; // equivalent to subtract(dst, src2, dst);
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`add`,
:func:`addWeighted`,
:func:`scaleAdd`,
:func:`convertScale`,
:ref:`MatrixExpressions`
.. index:: SVD
.. _SVD:
SVD
---
.. c:type:: SVD
2011-02-26 12:05:10 +01:00
Class for computing Singular Value Decomposition ::
class SVD
{
public:
enum { MODIFY_A=1, NO_UV=2, FULL_UV=4 };
// default empty constructor
SVD();
// decomposes A into u, w and vt: A = u*w*vt;
// u and vt are orthogonal, w is diagonal
SVD( const Mat& A, int flags=0 );
// decomposes A into u, w and vt.
SVD& operator ()( const Mat& A, int flags=0 );
2011-02-26 12:05:10 +01:00
2011-04-10 21:37:17 +02:00
// finds vector x, norm(x)=1, so that A*x = 0,
// where A is a singular matrix
static void solveZ( const Mat& A, Mat& x );
// does back-subsitution:
// x = vt.t()*inv(w)*u.t()*rhs ~ inv(A)*rhs
void backSubst( const Mat& rhs, Mat& x ) const;
2011-02-26 12:05:10 +01:00
Mat u; // the left orthogonal matrix
Mat w; // vector of singular values
Mat vt; // the right orthogonal matrix
};
2011-04-10 21:37:17 +02:00
The class ``SVD`` is used to compute Singular Value Decomposition of a floating-point matrix. The Singular Value Decomposition is used to solve least-square problems, under-determined linear systems, invert matrices, compute condition numbers, and so on.
For a bit faster operation, you can pass ``flags=SVD::MODIFY_A|...`` to modify the decomposed matrix when it is not necessary to preserve it. If you want to compute a condition number of a matrix or an absolute value of its determinant, you do not need ``u`` and ``vt`` . You can pass ``flags=SVD::NO_UV|...`` . Another flag ``FULL_UV`` indicates that full-size ``u`` and ``vt`` must be computed, which is not necessary most of the time.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`invert`,
:func:`solve`,
:func:`eigen`,
:func:`determinant`
2011-03-03 08:29:55 +01:00
.. index:: SVD::SVD
2011-03-08 23:22:24 +01:00
.. _SVD::SVD:
SVD::SVD
2011-03-08 23:22:24 +01:00
--------
.. c:function:: SVD::SVD()
2011-03-08 23:22:24 +01:00
.. c:function:: SVD::SVD( const Mat& A, int flags=0 )
SVD constructors
2011-04-10 21:37:17 +02:00
:param A: Decomposed matrix.
2011-04-10 21:37:17 +02:00
:param flags: Operation flags.
2011-04-10 21:37:17 +02:00
* **SVD::MODIFY_A** Use the algorithm to modify the decomposed matrix. It can save some space and speed-up processing a bit.
2011-04-10 21:37:17 +02:00
* **SVD::NO_UV** Indicate that only a vector of singular values ``w`` is to be computed, while ``u`` and ``vt`` will be set to empty matrices.
2011-03-08 23:22:24 +01:00
* **SVD::FULL_UV** When the matrix is not square, by default the algorithm produces ``u`` and ``vt`` matrices of sufficiently large size for the further ``A`` reconstruction. If, however, ``FULL_UV`` flag is specified, ``u`` and ``vt`` will be full-size square orthogonal matrices.
2011-04-10 21:37:17 +02:00
The first constructor initializes an empty ``SVD`` structure. The second constructor initializes an empty ``SVD`` structure and then calls
2011-02-26 12:05:10 +01:00
:func:`SVD::operator ()` .
.. index:: SVD::operator ()
2011-03-08 23:22:24 +01:00
.. _SVD::operator ():
SVD::operator ()
2011-03-08 23:22:24 +01:00
----------------
.. c:function:: SVD& SVD::operator ()( const Mat& A, int flags=0 )
2011-04-10 21:37:17 +02:00
Performs SVD of a matrix.
2011-04-10 21:37:17 +02:00
:param A: Decomposed matrix.
2011-04-10 21:37:17 +02:00
:param flags: Operation flags.
2011-04-10 21:37:17 +02:00
* **SVD::MODIFY_A** Use the algorithm to modify the decomposed matrix. It can save some space and speed-up processing a bit.
2011-04-10 21:37:17 +02:00
* **SVD::NO_UV** Use only singular values. The algorithm does not compute ``u`` and ``vt`` matrices.
2011-04-10 21:37:17 +02:00
* **SVD::FULL_UV** When the matrix is not square, by default the algorithm produces ``u`` and ``vt`` matrices of sufficiently large size for the further ``A`` reconstruction. If, however, the ``FULL_UV`` flag is specified, ``u`` and ``vt`` are full-size square orthogonal matrices.
2011-04-10 21:37:17 +02:00
The operator performs the singular value decomposition of the supplied matrix. The ``u``,``vt`` , and the vector of singular values ``w`` are stored in the structure. The same ``SVD`` structure can be reused many times with different matrices. Each time, if needed, the previous ``u``,``vt`` , and ``w`` are reclaimed and the new matrices are created, which is all handled by
2011-02-26 12:05:10 +01:00
:func:`Mat::create` .
.. index:: SVD::solveZ
2011-03-08 23:22:24 +01:00
.. _SVD::solveZ:
SVD::solveZ
2011-03-08 23:22:24 +01:00
-----------
.. c:function:: static void SVD::solveZ( const Mat& A, Mat& x )
2011-04-10 21:37:17 +02:00
Solves an under-determined singular linear system.
2011-04-10 21:37:17 +02:00
:param A: Left-hand-side matrix.
2011-04-10 21:37:17 +02:00
:param x: Found solution.
2011-04-10 21:37:17 +02:00
The method finds a unit-length solution
**x**
2011-02-26 12:05:10 +01:00
of the under-determined system
2011-04-10 21:37:17 +02:00
:math:`A x = 0` . Theory says that such a system has an infinite number of solutions, so the algorithm finds a unit-length solution as the right singular vector corresponding to the smallest singular value (which should be 0). In practice, because of round errors and limited floating-point accuracy, the input matrix can appear to be close-to-singular rather than just singular. So, strictly speaking, the algorithm solves the following problem:
.. math::
2011-02-26 12:05:10 +01:00
x^* = \arg \min _{x: \| x \| =1} \| A \cdot x \|
.. index:: SVD::backSubst
2011-03-08 23:22:24 +01:00
.. _SVD::backSubst:
SVD::backSubst
2011-03-08 23:22:24 +01:00
--------------
.. c:function:: void SVD::backSubst( const Mat& rhs, Mat& x ) const
2011-04-10 21:37:17 +02:00
Performs a singular value back substitution.
2011-04-10 21:37:17 +02:00
:param rhs: Right-hand side of a linear system :math:`\texttt{A} \texttt{x} = \texttt{rhs}` to be solved, where ``A`` is the matrix passed to :func:`SVD::SVD` or :func:`SVD::operator ()` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param x: Found solution of the system.
2011-04-10 21:37:17 +02:00
The method computes a back substitution for the specified right-hand side:
.. math::
2011-02-26 12:05:10 +01:00
\texttt{x} = \texttt{vt} ^T \cdot diag( \texttt{w} )^{-1} \cdot \texttt{u} ^T \cdot \texttt{rhs} \sim \texttt{A} ^{-1} \cdot \texttt{rhs}
2011-04-10 21:37:17 +02:00
Using this technique you can either get a very accurate solution of the convenient linear system, or the best (in the least-squares terms) pseudo-solution of an overdetermined linear system.
**Note**
Explicit SVD with the further back substitution only makes sense if you need to solve many linear systems with the same left-hand side (for example, ``A`` ). If all you need is to solve a single system (possibly with multiple ``rhs`` immediately available), simply call
:func:`solve` add pass ``DECOMP_SVD`` there. It does absolutely the same thing.
.. index:: sum
2011-03-08 23:22:24 +01:00
.. _sum:
sum
2011-03-08 23:22:24 +01:00
---
2011-03-08 23:22:24 +01:00
.. c:function:: Scalar sum(const Mat& mtx)
.. c:function:: Scalar sum(const MatND& mtx)
2011-04-10 21:37:17 +02:00
Calculates the sum of array elements.
2011-04-10 21:37:17 +02:00
:param mtx: Source array that must have from 1 to 4 channels.
2011-02-26 12:05:10 +01:00
The functions ``sum`` calculate and return the sum of array elements, independently for each channel.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`countNonZero`,
:func:`mean`,
:func:`meanStdDev`,
:func:`norm`,
:func:`minMaxLoc`,
:func:`reduce`
2011-03-03 08:29:55 +01:00
.. index:: theRNG
theRNG
2011-03-08 23:22:24 +01:00
------
.. c:function:: RNG& theRNG()
2011-04-10 21:37:17 +02:00
Returns the default random number generator.
2011-04-10 21:37:17 +02:00
The function ``theRNG`` returns the default random number generator. For each thread, there is a separate random number generator, so you can use the function safely in multi-thread environments. If you just need to get a single random number using this generator or initialize an array, you can use
2011-02-26 12:05:10 +01:00
:func:`randu` or
2011-04-10 21:37:17 +02:00
:func:`randn` instead. But if you are going to generate many random numbers inside a loop, it is much faster to use this function to retrieve the generator and then use ``RNG::operator _Tp()`` .
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`RNG`,
:func:`randu`,
:func:`randn`
2011-03-03 08:29:55 +01:00
.. index:: trace
2011-03-08 23:22:24 +01:00
.. _trace:
trace
2011-03-08 23:22:24 +01:00
-----
.. c:function:: Scalar trace(const Mat& mtx)
2011-04-10 21:37:17 +02:00
Returns the trace of a matrix.
2011-04-10 21:37:17 +02:00
:param mtx: Source matrix.
2011-02-26 12:05:10 +01:00
The function ``trace`` returns the sum of the diagonal elements of the matrix ``mtx`` .
.. math::
2011-02-26 12:05:10 +01:00
\mathrm{tr} ( \texttt{mtx} ) = \sum _i \texttt{mtx} (i,i)
.. index:: transform
2011-03-08 23:22:24 +01:00
.. _transform:
transform
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void transform(const Mat& src, Mat& dst, const Mat& mtx )
2011-04-10 21:37:17 +02:00
Performs the matrix transformation of every array element.
2011-04-10 21:37:17 +02:00
:param src: Source array that must have as many channels (1 to 4) as ``mtx.cols`` or ``mtx.cols-1``.
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same size and depth as ``src`` . It has as many channels as ``mtx.rows`` .
2011-03-03 08:29:55 +01:00
2011-04-10 21:37:17 +02:00
:param mtx: Transformation matrix.
2011-04-10 21:37:17 +02:00
The function ``transform`` performs the matrix transformation of every element of the array ``src`` and stores the results in ``dst`` :
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{mtx} \cdot \texttt{src} (I)
2011-02-26 12:05:10 +01:00
(when ``mtx.cols=src.channels()`` ), or
2011-02-26 12:05:10 +01:00
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (I) = \texttt{mtx} \cdot [ \texttt{src} (I); 1]
2011-02-26 12:05:10 +01:00
(when ``mtx.cols=src.channels()+1`` )
2011-04-10 21:37:17 +02:00
Every element of the ``N`` -channel array ``src`` is
considered as an ``N`` -element vector that is transformed using
the
2011-02-26 12:05:10 +01:00
:math:`\texttt{M} \times \texttt{N}` or
2011-04-10 21:37:17 +02:00
:math:`\texttt{M} \times \texttt{N+1}` matrix ``mtx`` into??
an element of the ``M`` -channel array ``dst`` .
2011-02-26 12:05:10 +01:00
The function may be used for geometrical transformation of
:math:`N` -dimensional
points, arbitrary linear color space transformation (such as various kinds of RGB
2011-04-10 21:37:17 +02:00
:math:`\rightarrow` YUV transforms), shuffling the image channels, and so forth.
2011-04-07 22:29:59 +02:00
See Also:
2011-04-10 21:37:17 +02:00
:func:`perspectiveTransform`,
:func:`getAffineTransform`,
:func:`estimateRigidTransform`,
:func:`warpAffine`,
:func:`warpPerspective`
2011-03-03 08:29:55 +01:00
.. index:: transpose
2011-03-08 23:22:24 +01:00
.. _transpose:
transpose
2011-03-08 23:22:24 +01:00
---------
.. c:function:: void transpose(const Mat& src, Mat& dst)
2011-04-10 21:37:17 +02:00
Transposes a matrix.
2011-04-10 21:37:17 +02:00
:param src: Source array.
2011-04-10 21:37:17 +02:00
:param dst: Destination array of the same type as ``src`` .
2011-03-03 08:29:55 +01:00
The function :func:`transpose` transposes the matrix ``src`` :
.. math::
2011-02-26 12:05:10 +01:00
\texttt{dst} (i,j) = \texttt{src} (j,i)
2011-04-10 21:37:17 +02:00
**Note**:
No complex conjugation is done in case of a complex matrix. It it should be done separately if needed.