Classes | |
class | cv::PCA |
Principal Component Analysis. More... | |
class | cv::LDA |
Linear Discriminant Analysis. More... | |
class | cv::SVD |
Singular Value Decomposition. More... | |
class | cv::RNG |
Random Number Generator. More... | |
class | cv::RNG_MT19937 |
Mersenne Twister random number generator. More... | |
Functions | |
CV_EXPORTS_W int | cv::borderInterpolate (int p, int len, int borderType) |
Computes the source location of an extrapolated pixel. More... | |
CV_EXPORTS_W void | cv::copyMakeBorder (InputArray src, OutputArray dst, int top, int bottom, int left, int right, int borderType, const Scalar &value=Scalar()) |
Forms a border around an image. More... | |
CV_EXPORTS_W void | cv::add (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1) |
Calculates the per-element sum of two arrays or an array and a scalar. More... | |
CV_EXPORTS_W void | cv::subtract (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1) |
Calculates the per-element difference between two arrays or array and a scalar. More... | |
CV_EXPORTS_W void | cv::multiply (InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1) |
Calculates the per-element scaled product of two arrays. More... | |
CV_EXPORTS_W void | cv::divide (InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1) |
Performs per-element division of two arrays or a scalar by an array. More... | |
CV_EXPORTS_W void | cv::divide (double scale, InputArray src2, OutputArray dst, int dtype=-1) |
CV_EXPORTS_W void | cv::scaleAdd (InputArray src1, double alpha, InputArray src2, OutputArray dst) |
Calculates the sum of a scaled array and another array. More... | |
CV_EXPORTS_W void | cv::addWeighted (InputArray src1, double alpha, InputArray src2, double beta, double gamma, OutputArray dst, int dtype=-1) |
Calculates the weighted sum of two arrays. More... | |
CV_EXPORTS_W void | cv::convertScaleAbs (InputArray src, OutputArray dst, double alpha=1, double beta=0) |
Scales, calculates absolute values, and converts the result to 8-bit. More... | |
CV_EXPORTS_W void | cv::convertFp16 (InputArray src, OutputArray dst) |
Converts an array to half precision floating number. More... | |
CV_EXPORTS_W void | cv::LUT (InputArray src, InputArray lut, OutputArray dst) |
Performs a look-up table transform of an array. More... | |
cv::CV_EXPORTS_AS (sumElems) Scalar sum(InputArray src) | |
Calculates the sum of array elements. More... | |
CV_EXPORTS_W bool | cv::hasNonZero (InputArray src) |
Checks for the presence of at least one non-zero array element. More... | |
CV_EXPORTS_W int | cv::countNonZero (InputArray src) |
Counts non-zero array elements. More... | |
CV_EXPORTS_W void | cv::findNonZero (InputArray src, OutputArray idx) |
Returns the list of locations of non-zero pixels. More... | |
CV_EXPORTS_W Scalar | cv::mean (InputArray src, InputArray mask=noArray()) |
Calculates an average (mean) of array elements. More... | |
CV_EXPORTS_W void | cv::meanStdDev (InputArray src, OutputArray mean, OutputArray stddev, InputArray mask=noArray()) |
CV_EXPORTS_W double | cv::norm (InputArray src1, int normType=NORM_L2, InputArray mask=noArray()) |
Calculates the absolute norm of an array. More... | |
CV_EXPORTS_W double | cv::norm (InputArray src1, InputArray src2, int normType=NORM_L2, InputArray mask=noArray()) |
Calculates an absolute difference norm or a relative difference norm. More... | |
CV_EXPORTS double | cv::norm (const SparseMat &src, int normType) |
CV_EXPORTS_W double | cv::PSNR (InputArray src1, InputArray src2, double R=255.) |
Computes the Peak Signal-to-Noise Ratio (PSNR) image quality metric. More... | |
CV_EXPORTS_W void | cv::batchDistance (InputArray src1, InputArray src2, OutputArray dist, int dtype, OutputArray nidx, int normType=NORM_L2, int K=0, InputArray mask=noArray(), int update=0, bool crosscheck=false) |
naive nearest neighbor finder More... | |
CV_EXPORTS_W void | cv::normalize (InputArray src, InputOutputArray dst, double alpha=1, double beta=0, int norm_type=NORM_L2, int dtype=-1, InputArray mask=noArray()) |
Normalizes the norm or value range of an array. More... | |
CV_EXPORTS void | cv::normalize (const SparseMat &src, SparseMat &dst, double alpha, int normType) |
CV_EXPORTS_W void | cv::minMaxLoc (InputArray src, CV_OUT double *minVal, CV_OUT double *maxVal=0, CV_OUT Point *minLoc=0, CV_OUT Point *maxLoc=0, InputArray mask=noArray()) |
Finds the global minimum and maximum in an array. More... | |
CV_EXPORTS_W void | cv::reduceArgMin (InputArray src, OutputArray dst, int axis, bool lastIndex=false) |
Finds indices of min elements along provided axis. More... | |
CV_EXPORTS_W void | cv::reduceArgMax (InputArray src, OutputArray dst, int axis, bool lastIndex=false) |
Finds indices of max elements along provided axis. More... | |
CV_EXPORTS void | cv::minMaxIdx (InputArray src, double *minVal, double *maxVal=0, int *minIdx=0, int *maxIdx=0, InputArray mask=noArray()) |
Finds the global minimum and maximum in an array. More... | |
CV_EXPORTS void | cv::minMaxLoc (const SparseMat &a, double *minVal, double *maxVal, int *minIdx=0, int *maxIdx=0) |
CV_EXPORTS_W void | cv::reduce (InputArray src, OutputArray dst, int dim, int rtype, int dtype=-1) |
Reduces a matrix to a vector. More... | |
CV_EXPORTS void | cv::merge (const Mat *mv, size_t count, OutputArray dst) |
Creates one multi-channel array out of several single-channel ones. More... | |
CV_EXPORTS_W void | cv::merge (InputArrayOfArrays mv, OutputArray dst) |
CV_EXPORTS void | cv::split (const Mat &src, Mat *mvbegin) |
Divides a multi-channel array into several single-channel arrays. More... | |
CV_EXPORTS_W void | cv::split (InputArray m, OutputArrayOfArrays mv) |
CV_EXPORTS void | cv::mixChannels (const Mat *src, size_t nsrcs, Mat *dst, size_t ndsts, const int *fromTo, size_t npairs) |
Copies specified channels from input arrays to the specified channels of output arrays. More... | |
CV_EXPORTS void | cv::mixChannels (InputArrayOfArrays src, InputOutputArrayOfArrays dst, const int *fromTo, size_t npairs) |
CV_EXPORTS_W void | cv::mixChannels (InputArrayOfArrays src, InputOutputArrayOfArrays dst, const std::vector< int > &fromTo) |
CV_EXPORTS_W void | cv::extractChannel (InputArray src, OutputArray dst, int coi) |
Extracts a single channel from src (coi is 0-based index) More... | |
CV_EXPORTS_W void | cv::insertChannel (InputArray src, InputOutputArray dst, int coi) |
Inserts a single channel to dst (coi is 0-based index) More... | |
CV_EXPORTS_W void | cv::flip (InputArray src, OutputArray dst, int flipCode) |
Flips a 2D array around vertical, horizontal, or both axes. More... | |
CV_EXPORTS_W void | cv::flipND (InputArray src, OutputArray dst, int axis) |
Flips a n-dimensional at given axis. More... | |
CV_EXPORTS_W void | cv::broadcast (InputArray src, InputArray shape, OutputArray dst) |
Broadcast the given Mat to the given shape. More... | |
CV_EXPORTS_W void | cv::rotate (InputArray src, OutputArray dst, int rotateCode) |
Rotates a 2D array in multiples of 90 degrees. The function cv::rotate rotates the array in one of three different ways: Rotate by 90 degrees clockwise (rotateCode = ROTATE_90_CLOCKWISE). Rotate by 180 degrees clockwise (rotateCode = ROTATE_180). Rotate by 270 degrees clockwise (rotateCode = ROTATE_90_COUNTERCLOCKWISE). More... | |
CV_EXPORTS_W void | cv::repeat (InputArray src, int ny, int nx, OutputArray dst) |
Fills the output array with repeated copies of the input array. More... | |
CV_EXPORTS Mat | cv::repeat (const Mat &src, int ny, int nx) |
CV_EXPORTS void | cv::hconcat (const Mat *src, size_t nsrc, OutputArray dst) |
Applies horizontal concatenation to given matrices. More... | |
CV_EXPORTS void | cv::hconcat (InputArray src1, InputArray src2, OutputArray dst) |
CV_EXPORTS_W void | cv::hconcat (InputArrayOfArrays src, OutputArray dst) |
CV_EXPORTS void | cv::vconcat (const Mat *src, size_t nsrc, OutputArray dst) |
Applies vertical concatenation to given matrices. More... | |
CV_EXPORTS void | cv::vconcat (InputArray src1, InputArray src2, OutputArray dst) |
CV_EXPORTS_W void | cv::vconcat (InputArrayOfArrays src, OutputArray dst) |
CV_EXPORTS_W void | cv::bitwise_and (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
computes bitwise conjunction of the two arrays (dst = src1 & src2) Calculates the per-element bit-wise conjunction of two arrays or an array and a scalar. More... | |
CV_EXPORTS_W void | cv::bitwise_or (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
Calculates the per-element bit-wise disjunction of two arrays or an array and a scalar. More... | |
CV_EXPORTS_W void | cv::bitwise_xor (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
Calculates the per-element bit-wise "exclusive or" operation on two arrays or an array and a scalar. More... | |
CV_EXPORTS_W void | cv::bitwise_not (InputArray src, OutputArray dst, InputArray mask=noArray()) |
Inverts every bit of an array. More... | |
CV_EXPORTS_W void | cv::absdiff (InputArray src1, InputArray src2, OutputArray dst) |
Calculates the per-element absolute difference between two arrays or between an array and a scalar. More... | |
void CV_EXPORTS_W | cv::copyTo (InputArray src, OutputArray dst, InputArray mask) |
This is an overloaded member function, provided for convenience (python) Copies the matrix to another one. When the operation mask is specified, if the Mat::create call shown above reallocates the matrix, the newly allocated matrix is initialized with all zeros before copying the data. More... | |
CV_EXPORTS_W void | cv::inRange (InputArray src, InputArray lowerb, InputArray upperb, OutputArray dst) |
Checks if array elements lie between the elements of two other arrays. More... | |
CV_EXPORTS_W void | cv::compare (InputArray src1, InputArray src2, OutputArray dst, int cmpop) |
Performs the per-element comparison of two arrays or an array and scalar value. More... | |
CV_EXPORTS_W void | cv::min (InputArray src1, InputArray src2, OutputArray dst) |
Calculates per-element minimum of two arrays or an array and a scalar. More... | |
CV_EXPORTS void | cv::min (const Mat &src1, const Mat &src2, Mat &dst) |
CV_EXPORTS void | cv::min (const UMat &src1, const UMat &src2, UMat &dst) |
CV_EXPORTS_W void | cv::max (InputArray src1, InputArray src2, OutputArray dst) |
Calculates per-element maximum of two arrays or an array and a scalar. More... | |
CV_EXPORTS void | cv::max (const Mat &src1, const Mat &src2, Mat &dst) |
CV_EXPORTS void | cv::max (const UMat &src1, const UMat &src2, UMat &dst) |
CV_EXPORTS_W void | cv::sqrt (InputArray src, OutputArray dst) |
Calculates a square root of array elements. More... | |
CV_EXPORTS_W void | cv::pow (InputArray src, double power, OutputArray dst) |
Raises every array element to a power. More... | |
CV_EXPORTS_W void | cv::exp (InputArray src, OutputArray dst) |
Calculates the exponent of every array element. More... | |
CV_EXPORTS_W void | cv::log (InputArray src, OutputArray dst) |
Calculates the natural logarithm of every array element. More... | |
CV_EXPORTS_W void | cv::polarToCart (InputArray magnitude, InputArray angle, OutputArray x, OutputArray y, bool angleInDegrees=false) |
Calculates x and y coordinates of 2D vectors from their magnitude and angle. More... | |
CV_EXPORTS_W void | cv::cartToPolar (InputArray x, InputArray y, OutputArray magnitude, OutputArray angle, bool angleInDegrees=false) |
Calculates the magnitude and angle of 2D vectors. More... | |
CV_EXPORTS_W void | cv::phase (InputArray x, InputArray y, OutputArray angle, bool angleInDegrees=false) |
Calculates the rotation angle of 2D vectors. More... | |
CV_EXPORTS_W void | cv::magnitude (InputArray x, InputArray y, OutputArray magnitude) |
Calculates the magnitude of 2D vectors. More... | |
CV_EXPORTS_W bool | cv::checkRange (InputArray a, bool quiet=true, CV_OUT Point *pos=0, double minVal=-DBL_MAX, double maxVal=DBL_MAX) |
Checks every element of an input array for invalid values. More... | |
CV_EXPORTS_W void | cv::patchNaNs (InputOutputArray a, double val=0) |
Replaces NaNs by given number. More... | |
CV_EXPORTS_W void | cv::gemm (InputArray src1, InputArray src2, double alpha, InputArray src3, double beta, OutputArray dst, int flags=0) |
Performs generalized matrix multiplication. More... | |
CV_EXPORTS_W void | cv::mulTransposed (InputArray src, OutputArray dst, bool aTa, InputArray delta=noArray(), double scale=1, int dtype=-1) |
Calculates the product of a matrix and its transposition. More... | |
CV_EXPORTS_W void | cv::transpose (InputArray src, OutputArray dst) |
Transposes a matrix. More... | |
CV_EXPORTS_W void | cv::transposeND (InputArray src, const std::vector< int > &order, OutputArray dst) |
Transpose for n-dimensional matrices. More... | |
CV_EXPORTS_W void | cv::transform (InputArray src, OutputArray dst, InputArray m) |
Performs the matrix transformation of every array element. More... | |
CV_EXPORTS_W void | cv::perspectiveTransform (InputArray src, OutputArray dst, InputArray m) |
Performs the perspective matrix transformation of vectors. More... | |
CV_EXPORTS_W void | cv::completeSymm (InputOutputArray m, bool lowerToUpper=false) |
Copies the lower or the upper half of a square matrix to its another half. More... | |
CV_EXPORTS_W void | cv::setIdentity (InputOutputArray mtx, const Scalar &s=Scalar(1)) |
Initializes a scaled identity matrix. More... | |
CV_EXPORTS_W double | cv::determinant (InputArray mtx) |
Returns the determinant of a square floating-point matrix. More... | |
CV_EXPORTS_W Scalar | cv::trace (InputArray mtx) |
Returns the trace of a matrix. More... | |
CV_EXPORTS_W double | cv::invert (InputArray src, OutputArray dst, int flags=DECOMP_LU) |
Finds the inverse or pseudo-inverse of a matrix. More... | |
CV_EXPORTS_W bool | cv::solve (InputArray src1, InputArray src2, OutputArray dst, int flags=DECOMP_LU) |
Solves one or more linear systems or least-squares problems. More... | |
CV_EXPORTS_W void | cv::sort (InputArray src, OutputArray dst, int flags) |
Sorts each row or each column of a matrix. More... | |
CV_EXPORTS_W void | cv::sortIdx (InputArray src, OutputArray dst, int flags) |
Sorts each row or each column of a matrix. More... | |
CV_EXPORTS_W int | cv::solveCubic (InputArray coeffs, OutputArray roots) |
Finds the real roots of a cubic equation. More... | |
CV_EXPORTS_W double | cv::solvePoly (InputArray coeffs, OutputArray roots, int maxIters=300) |
Finds the real or complex roots of a polynomial equation. More... | |
CV_EXPORTS_W bool | cv::eigen (InputArray src, OutputArray eigenvalues, OutputArray eigenvectors=noArray()) |
Calculates eigenvalues and eigenvectors of a symmetric matrix. More... | |
CV_EXPORTS_W void | cv::eigenNonSymmetric (InputArray src, OutputArray eigenvalues, OutputArray eigenvectors) |
Calculates eigenvalues and eigenvectors of a non-symmetric matrix (real eigenvalues only). More... | |
CV_EXPORTS void | cv::calcCovarMatrix (const Mat *samples, int nsamples, Mat &covar, Mat &mean, int flags, int ctype=CV_64F) |
Calculates the covariance matrix of a set of vectors. More... | |
CV_EXPORTS_W void | cv::calcCovarMatrix (InputArray samples, OutputArray covar, InputOutputArray mean, int flags, int ctype=CV_64F) |
CV_EXPORTS_W void | cv::PCACompute (InputArray data, InputOutputArray mean, OutputArray eigenvectors, int maxComponents=0) |
cv::CV_EXPORTS_AS (PCACompute2) void PCACompute(InputArray data | |
CV_EXPORTS_W void | cv::PCACompute (InputArray data, InputOutputArray mean, OutputArray eigenvectors, double retainedVariance) |
CV_EXPORTS_W void | cv::PCAProject (InputArray data, InputArray mean, InputArray eigenvectors, OutputArray result) |
CV_EXPORTS_W void | cv::PCABackProject (InputArray data, InputArray mean, InputArray eigenvectors, OutputArray result) |
CV_EXPORTS_W void | cv::SVDecomp (InputArray src, OutputArray w, OutputArray u, OutputArray vt, int flags=0) |
CV_EXPORTS_W void | cv::SVBackSubst (InputArray w, InputArray u, InputArray vt, InputArray rhs, OutputArray dst) |
CV_EXPORTS_W double | cv::Mahalanobis (InputArray v1, InputArray v2, InputArray icovar) |
Calculates the Mahalanobis distance between two vectors. More... | |
CV_EXPORTS_W void | cv::dft (InputArray src, OutputArray dst, int flags=0, int nonzeroRows=0) |
Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array. More... | |
CV_EXPORTS_W void | cv::idft (InputArray src, OutputArray dst, int flags=0, int nonzeroRows=0) |
Calculates the inverse Discrete Fourier Transform of a 1D or 2D array. More... | |
CV_EXPORTS_W void | cv::dct (InputArray src, OutputArray dst, int flags=0) |
Performs a forward or inverse discrete Cosine transform of 1D or 2D array. More... | |
CV_EXPORTS_W void | cv::idct (InputArray src, OutputArray dst, int flags=0) |
Calculates the inverse Discrete Cosine Transform of a 1D or 2D array. More... | |
CV_EXPORTS_W void | cv::mulSpectrums (InputArray a, InputArray b, OutputArray c, int flags, bool conjB=false) |
Performs the per-element multiplication of two Fourier spectrums. More... | |
CV_EXPORTS_W int | cv::getOptimalDFTSize (int vecsize) |
Returns the optimal DFT size for a given vector size. More... | |
CV_EXPORTS RNG & | cv::theRNG () |
Returns the default random number generator. More... | |
CV_EXPORTS_W void | cv::setRNGSeed (int seed) |
Sets state of default random number generator. More... | |
CV_EXPORTS_W void | cv::randu (InputOutputArray dst, InputArray low, InputArray high) |
Generates a single uniformly-distributed random number or an array of random numbers. More... | |
CV_EXPORTS_W void | cv::randn (InputOutputArray dst, InputArray mean, InputArray stddev) |
Fills the array with normally distributed random numbers. More... | |
CV_EXPORTS_W void | cv::randShuffle (InputOutputArray dst, double iterFactor=1., RNG *rng=0) |
Shuffles the array elements randomly. More... | |
enum cv::BorderTypes |
Various border types, image boundaries are denoted with |
enum cv::CmpTypes |
enum cv::DecompTypes |
matrix decomposition types
Enumerator | |
---|---|
DECOMP_LU | Gaussian elimination with the optimal pivot element chosen. |
DECOMP_SVD | singular value decomposition (SVD) method; the system can be over-defined and/or the matrix src1 can be singular |
DECOMP_EIG | eigenvalue decomposition; the matrix src1 must be symmetrical |
DECOMP_CHOLESKY | Cholesky factorization; the matrix src1 must be symmetrical and positively defined |
DECOMP_QR | QR factorization; the system can be over-defined and/or the matrix src1 can be singular |
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 are solved instead of the original system |
enum cv::DftFlags |
enum cv::GemmFlags |
enum cv::NormTypes |
norm types
src1 and src2 denote input arrays.
Enumerator | |
---|---|
NORM_INF |
|
NORM_L1 |
|
NORM_L2 |
|
NORM_L2SQR |
|
NORM_HAMMING | In the case of one input array, calculates the Hamming distance of the array from zero, In the case of two input arrays, calculates the Hamming distance between the arrays. |
NORM_HAMMING2 | Similar to NORM_HAMMING, but in the calculation, each two bits of the input sequence will be added and treated as a single bit to be used in the same calculation as NORM_HAMMING. |
NORM_TYPE_MASK | bit-mask which can be used to separate norm type from norm flags |
NORM_RELATIVE | flag |
NORM_MINMAX | flag |
enum cv::ReduceTypes |
enum cv::RotateFlags |
CV_EXPORTS_W void cv::absdiff | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst | ||
) |
Calculates the per-element absolute difference between two arrays or between an array and a scalar.
The function cv::absdiff calculates: Absolute difference between two arrays when they have the same size and type:
Absolute difference between an array and a scalar when the second array is constructed from Scalar or has as many elements as the number of channels in src1
:
Absolute difference between a scalar and an array when the first array is constructed from Scalar or has as many elements as the number of channels in src2
:
where I is a multi-dimensional index of array elements. In case of multi-channel arrays, each channel is processed independently.
absdiff(src,X)
means absdiff(src,(X,X,X,X))
. absdiff(src,(X,))
means absdiff(src,(X,0,0,0))
. src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array that has the same size and type as input arrays. |
CV_EXPORTS_W void cv::add | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
InputArray | mask = noArray() , |
||
int | dtype = -1 |
||
) |
Calculates the per-element sum of two arrays or an array and a scalar.
The function add calculates:
src1.channels()
:
src2.channels()
: where
I
is a multi-dimensional index of array elements. In case of multi-channel arrays, each channel is processed independently.The first function in the list above can be replaced with matrix expressions:
The input arrays and the output array can all have the same or different depths. For example, you can add a 16-bit unsigned array to a 8-bit signed array and store the sum as a 32-bit floating-point array. Depth of the output array is determined by the dtype parameter. In the second and third cases above, as well as in the first case, when src1.depth() == src2.depth(), dtype can be set to the default -1. In this case, the output array will have the same depth as the input array, be it src1, src2 or both.
add(src,X)
means add(src,(X,X,X,X))
. add(src,(X,))
means add(src,(X,0,0,0))
. src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array that has the same size and number of channels as the input array(s); the depth is defined by dtype or src1/src2. |
mask | optional operation mask - 8-bit single channel array, that specifies elements of the output array to be changed. |
dtype | optional depth of the output array (see the discussion below). |
CV_EXPORTS_W void cv::addWeighted | ( | InputArray | src1, |
double | alpha, | ||
InputArray | src2, | ||
double | beta, | ||
double | gamma, | ||
OutputArray | dst, | ||
int | dtype = -1 |
||
) |
Calculates the weighted sum of two arrays.
The function addWeighted calculates the weighted sum of two arrays as follows:
where I is a multi-dimensional index of array elements. In case of multi-channel arrays, each channel is processed independently. The function can be replaced with a matrix expression:
src1 | first input array. |
alpha | weight of the first array elements. |
src2 | second input array of the same size and channel number as src1. |
beta | weight of the second array elements. |
gamma | scalar added to each sum. |
dst | output array that has the same size and number of channels as the input arrays. |
dtype | optional depth of the output array; when both input arrays have the same depth, dtype can be set to -1, which will be equivalent to src1.depth(). |
CV_EXPORTS_W void cv::batchDistance | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dist, | ||
int | dtype, | ||
OutputArray | nidx, | ||
int | normType = NORM_L2 , |
||
int | K = 0 , |
||
InputArray | mask = noArray() , |
||
int | update = 0 , |
||
bool | crosscheck = false |
||
) |
naive nearest neighbor finder
see http://en.wikipedia.org/wiki/Nearest_neighbor_search
CV_EXPORTS_W void cv::bitwise_and | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
InputArray | mask = noArray() |
||
) |
computes bitwise conjunction of the two arrays (dst = src1 & src2) Calculates the per-element bit-wise conjunction of two arrays or an array and a scalar.
The function cv::bitwise_and calculates the per-element bit-wise logical conjunction for: Two arrays when src1 and src2 have the same size:
An array and a scalar when src2 is constructed from Scalar or has the same number of elements as src1.channels()
:
A scalar and an array when src1 is constructed from Scalar or has the same number of elements as src2.channels()
:
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. In the second and third cases above, the scalar is first converted to the array type.
src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array that has the same size and type as the input arrays. |
mask | optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed. |
CV_EXPORTS_W void cv::bitwise_not | ( | InputArray | src, |
OutputArray | dst, | ||
InputArray | mask = noArray() |
||
) |
Inverts every bit of an array.
The function cv::bitwise_not calculates per-element bit-wise inversion of the input array:
In case of a floating-point input 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.
src | input array. |
dst | output array that has the same size and type as the input array. |
mask | optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed. |
CV_EXPORTS_W void cv::bitwise_or | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
InputArray | mask = noArray() |
||
) |
Calculates the per-element bit-wise disjunction of two arrays or an array and a scalar.
The function cv::bitwise_or calculates the per-element bit-wise logical disjunction for: Two arrays when src1 and src2 have the same size:
An array and a scalar when src2 is constructed from Scalar or has the same number of elements as src1.channels()
:
A scalar and an array when src1 is constructed from Scalar or has the same number of elements as src2.channels()
:
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. In the second and third cases above, the scalar is first converted to the array type.
src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array that has the same size and type as the input arrays. |
mask | optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed. |
CV_EXPORTS_W void cv::bitwise_xor | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
InputArray | mask = noArray() |
||
) |
Calculates the per-element bit-wise "exclusive or" operation on two arrays or an array and a scalar.
The function cv::bitwise_xor calculates the per-element bit-wise logical "exclusive-or" operation for: Two arrays when src1 and src2 have the same size:
An array and a scalar when src2 is constructed from Scalar or has the same number of elements as src1.channels()
:
A scalar and an array when src1 is constructed from Scalar or has the same number of elements as src2.channels()
:
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. In the 2nd and 3rd cases above, the scalar is first converted to the array type.
src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array that has the same size and type as the input arrays. |
mask | optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed. |
CV_EXPORTS_W int cv::borderInterpolate | ( | int | p, |
int | len, | ||
int | borderType | ||
) |
Computes the source location of an extrapolated pixel.
The function computes and returns the coordinate of a donor pixel corresponding to the specified extrapolated pixel when using the specified extrapolation border mode. For example, if you use cv::BORDER_WRAP mode in the horizontal direction, cv::BORDER_REFLECT_101 in the vertical direction and want to compute value of the "virtual" pixel Point(-5, 100) in a floating-point image img, it looks like:
Normally, the function is not called directly. It is used inside filtering functions and also in copyMakeBorder.
p | 0-based coordinate of the extrapolated pixel along one of the axes, likely <0 or >= len |
len | Length of the array along the corresponding axis. |
borderType | Border type, one of the BorderTypes, except for BORDER_TRANSPARENT and BORDER_ISOLATED. When borderType==BORDER_CONSTANT, the function always returns -1, regardless of p and len. |
CV_EXPORTS_W void cv::broadcast | ( | InputArray | src, |
InputArray | shape, | ||
OutputArray | dst | ||
) |
Broadcast the given Mat to the given shape.
src | input array |
shape | target shape. Should be a list of CV_32S numbers. Note that negative values are not supported. |
dst | output array that has the given shape |
CV_EXPORTS void cv::calcCovarMatrix | ( | const Mat * | samples, |
int | nsamples, | ||
Mat & | covar, | ||
Mat & | mean, | ||
int | flags, | ||
int | ctype = CV_64F |
||
) |
Calculates the covariance matrix of a set of vectors.
The function cv::calcCovarMatrix calculates the covariance matrix and, optionally, the mean vector of the set of input vectors.
samples | samples stored as separate matrices |
nsamples | number of samples |
covar | output covariance matrix of the type ctype and square size. |
mean | input or output (depending on the flags) array as the average value of the input vectors. |
flags | operation flags as a combination of CovarFlags |
ctype | type of the matrixl; it equals 'CV_64F' by default. |
CV_EXPORTS_W void cv::calcCovarMatrix | ( | InputArray | samples, |
OutputArray | covar, | ||
InputOutputArray | mean, | ||
int | flags, | ||
int | ctype = CV_64F |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
samples | samples stored as rows/columns of a single matrix. |
covar | output covariance matrix of the type ctype and square size. |
mean | input or output (depending on the flags) array as the average value of the input vectors. |
flags | operation flags as a combination of CovarFlags |
ctype | type of the matrixl; it equals 'CV_64F' by default. |
CV_EXPORTS_W void cv::cartToPolar | ( | InputArray | x, |
InputArray | y, | ||
OutputArray | magnitude, | ||
OutputArray | angle, | ||
bool | angleInDegrees = false |
||
) |
Calculates the magnitude and angle of 2D vectors.
The function cv::cartToPolar calculates either the magnitude, angle, or both for every 2D vector (x(I),y(I)):
The angles are calculated with accuracy about 0.3 degrees. For the point (0,0), the angle is set to 0.
x | array of x-coordinates; this must be a single-precision or double-precision floating-point array. |
y | array of y-coordinates, that must have the same size and same type as x. |
magnitude | output array of magnitudes of the same size and type as x. |
angle | output array of angles that has the same size and type as x; the angles are measured in radians (from 0 to 2*Pi) or in degrees (0 to 360 degrees). |
angleInDegrees | a flag, indicating whether the angles are measured in radians (which is by default), or in degrees. |
CV_EXPORTS_W bool cv::checkRange | ( | InputArray | a, |
bool | quiet = true , |
||
CV_OUT Point * | pos = 0 , |
||
double | minVal = -DBL_MAX , |
||
double | maxVal = DBL_MAX |
||
) |
Checks every element of an input array for invalid values.
The function cv::checkRange checks that every array element is neither NaN nor infinite. When minVal > -DBL_MAX and maxVal < DBL_MAX, the function also checks that each value is between minVal and maxVal. In case of multi-channel arrays, each channel is processed independently. If some values are out of range, position of the first outlier is stored in pos (when pos != NULL). Then, the function either returns false (when quiet=true) or throws an exception.
a | input array. |
quiet | a flag, indicating whether the functions quietly return false when the array elements are out of range or they throw an exception. |
pos | optional output parameter, when not NULL, must be a pointer to array of src.dims elements. |
minVal | inclusive lower boundary of valid values range. |
maxVal | exclusive upper boundary of valid values range. |
CV_EXPORTS_W void cv::compare | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
int | cmpop | ||
) |
Performs the per-element comparison of two arrays or an array and scalar value.
The function compares: Elements of two arrays when src1 and src2 have the same size:
Elements of src1 with a scalar src2 when src2 is constructed from Scalar or has a single element:
src1 with elements of src2 when src1 is constructed from Scalar or has a single element:
When the comparison result is true, the corresponding element of output array is set to 255. The comparison operations can be replaced with the equivalent matrix expressions:
src1 | first input array or a scalar; when it is an array, it must have a single channel. |
src2 | second input array or a scalar; when it is an array, it must have a single channel. |
dst | output array of type ref CV_8U that has the same size and the same number of channels as the input arrays. |
cmpop | a flag, that specifies correspondence between the arrays (cv::CmpTypes) |
CV_EXPORTS_W void cv::completeSymm | ( | InputOutputArray | m, |
bool | lowerToUpper = false |
||
) |
Copies the lower or the upper half of a square matrix to its another half.
The function cv::completeSymm copies the lower or the upper half of a square matrix to its another half. The matrix diagonal remains unchanged:
m | input-output floating-point square matrix. |
lowerToUpper | operation flag; if true, the lower half is copied to the upper half. Otherwise, the upper half is copied to the lower half. |
CV_EXPORTS_W void cv::convertFp16 | ( | InputArray | src, |
OutputArray | dst | ||
) |
Converts an array to half precision floating number.
This function converts FP32 (single precision floating point) from/to FP16 (half precision floating point). CV_16S format is used to represent FP16 data. There are two use modes (src -> dst): CV_32F -> CV_16S and CV_16S -> CV_32F. The input array has to have type of CV_32F or CV_16S to represent the bit depth. If the input array is neither of them, the function will raise an error. The format of half precision floating point is defined in IEEE 754-2008.
src | input array. |
dst | output array. |
CV_EXPORTS_W void cv::convertScaleAbs | ( | InputArray | src, |
OutputArray | dst, | ||
double | alpha = 1 , |
||
double | beta = 0 |
||
) |
Scales, calculates absolute values, and converts the result to 8-bit.
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:
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 calculating an absolute value of the result. For example:
src | input array. |
dst | output array. |
alpha | optional scale factor. |
beta | optional delta added to the scaled values. |
CV_EXPORTS_W void cv::copyMakeBorder | ( | InputArray | src, |
OutputArray | dst, | ||
int | top, | ||
int | bottom, | ||
int | left, | ||
int | right, | ||
int | borderType, | ||
const Scalar & | value = Scalar() |
||
) |
Forms a border around an image.
The function copies the source image into the middle of the destination image. The areas to the left, to the right, above and below the copied source image will be filled with extrapolated pixels. This is not what filtering functions based on it do (they extrapolate pixels on-fly), but what other more complex functions, including your own, may do to simplify image boundary handling.
The function supports the mode when src is already in the middle of dst . In this case, the function does not copy src itself but simply constructs the border, for example:
src | Source image. |
dst | Destination image of the same type as src and the size Size(src.cols+left+right, src.rows+top+bottom) . |
top | the top pixels |
bottom | the bottom pixels |
left | the left pixels |
right | Parameter specifying how many pixels in each direction from the source image rectangle to extrapolate. For example, top=1, bottom=1, left=1, right=1 mean that 1 pixel-wide border needs to be built. |
borderType | Border type. See borderInterpolate for details. |
value | Border value if borderType==BORDER_CONSTANT . |
void CV_EXPORTS_W cv::copyTo | ( | InputArray | src, |
OutputArray | dst, | ||
InputArray | mask | ||
) |
This is an overloaded member function, provided for convenience (python) Copies the matrix to another one. When the operation mask is specified, if the Mat::create call shown above reallocates the matrix, the newly allocated matrix is initialized with all zeros before copying the data.
src | source matrix. |
dst | Destination matrix. If it does not have a proper size or type before the operation, it is reallocated. |
mask | Operation mask of the same size as *this. Its non-zero elements indicate which matrix elements need to be copied. The mask has to be of type CV_8U and can have 1 or multiple channels. |
CV_EXPORTS_W int cv::countNonZero | ( | InputArray | src | ) |
Counts non-zero array elements.
The function returns the number of non-zero elements in src :
The function do not work with multi-channel arrays. If you need to count non-zero array elements across all the channels, use Mat::reshape first to reinterpret the array as single-channel. Or you may extract the particular channel using either extractImageCOI, or mixChannels, or split.
src | single-channel array. |
cv::CV_EXPORTS_AS | ( | PCACompute2 | ) |
wrap PCA::operator() and add eigenvalues output parameter
cv::CV_EXPORTS_AS | ( | sumElems | ) |
Calculates the sum of array elements.
The function cv::sum calculates and returns the sum of array elements, independently for each channel.
src | input array that must have from 1 to 4 channels. |
CV_EXPORTS_W void cv::dct | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags = 0 |
||
) |
Performs a forward or inverse discrete Cosine transform of 1D or 2D array.
The function cv::dct performs a forward or inverse discrete Cosine transform (DCT) of a 1D or 2D floating-point array:
where
and , for j > 0.
(since is an orthogonal matrix, )
The function chooses the mode of operation by looking at the flags and size of the input array:
src | input floating-point array. |
dst | output array of the same size and type as src . |
flags | transformation flags as a combination of cv::DftFlags (DCT_*) |
CV_EXPORTS_W double cv::determinant | ( | InputArray | mtx | ) |
Returns the determinant of a square floating-point matrix.
The function cv::determinant calculates 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 with partial pivoting.
For symmetric positively-determined matrices, it is also possible to use eigen decomposition to calculate the determinant.
mtx | input matrix that must have CV_32FC1 or CV_64FC1 type and square size. |
CV_EXPORTS_W void cv::dft | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags = 0 , |
||
int | nonzeroRows = 0 |
||
) |
Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array.
The function cv::dft performs one of the following:
where and
where
In case of real (single-channel) data, the output spectrum of the forward Fourier transform or input spectrum of the inverse Fourier transform can be represented in a packed format called CCS (complex-conjugate-symmetrical). It was borrowed from IPL (Intel* Image Processing Library). Here is how 2D CCS spectrum looks:
In case of 1D transform of a real vector, the output looks like the first row of the matrix above.
So, the function chooses an operation mode depending on the flags and size of the input array:
If DFT_SCALE is set, the scaling is done after the transformation.
Unlike 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 calculated using the getOptimalDFTSize method.
The sample below illustrates how to calculate a DFT-based convolution of two 2D real arrays:
To optimize this sample, consider the following approaches:
All of the above improvements have been implemented in matchTemplate and filter2D . Therefore, by using them, you can get the performance even better than with the above theoretically optimal implementation. Though, those two functions actually calculate cross-correlation, not convolution, so you need to "flip" the second convolution operand B vertically and horizontally using flip .
src | input array that could be real or complex. |
dst | output array whose size and type depends on the flags . |
flags | transformation flags, representing a combination of the DftFlags |
nonzeroRows | when the parameter is not zero, 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 calculating array cross-correlation or convolution using DFT. |
CV_EXPORTS_W void cv::divide | ( | double | scale, |
InputArray | src2, | ||
OutputArray | dst, | ||
int | dtype = -1 |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CV_EXPORTS_W void cv::divide | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
double | scale = 1 , |
||
int | dtype = -1 |
||
) |
Performs per-element division of two arrays or a scalar by an array.
The function cv::divide divides one array by another:
or a scalar by an array when there is no src1 :
Different channels of multi-channel arrays are processed independently.
For integer types when src2(I) is zero, dst(I) will also be zero.
divide(src,X)
means divide(src,(X,X,X,X))
. divide(src,(X,))
means divide(src,(X,0,0,0))
. src1 | first input array. |
src2 | second input array of the same size and type as src1. |
scale | scalar factor. |
dst | output array of the same size and type as src2. |
dtype | optional depth of the output array; if -1, dst will have depth src2.depth(), but in case of an array-by-array division, you can only pass -1 when src1.depth()==src2.depth(). |
CV_EXPORTS_W bool cv::eigen | ( | InputArray | src, |
OutputArray | eigenvalues, | ||
OutputArray | eigenvectors = noArray() |
||
) |
Calculates eigenvalues and eigenvectors of a symmetric matrix.
The function cv::eigen calculates just eigenvalues, or eigenvalues and eigenvectors of the symmetric matrix src:
src | input matrix that must have CV_32FC1 or CV_64FC1 type, square size and be symmetrical (src ^T^ == src). |
eigenvalues | output vector of eigenvalues of the same type as src; the eigenvalues are stored in the descending order. |
eigenvectors | 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. |
CV_EXPORTS_W void cv::eigenNonSymmetric | ( | InputArray | src, |
OutputArray | eigenvalues, | ||
OutputArray | eigenvectors | ||
) |
Calculates eigenvalues and eigenvectors of a non-symmetric matrix (real eigenvalues only).
The function calculates eigenvalues and eigenvectors (optional) of the square matrix src:
src | input matrix (CV_32FC1 or CV_64FC1 type). |
eigenvalues | output vector of eigenvalues (type is the same type as src). |
eigenvectors | output matrix of eigenvectors (type is the same type as src). The eigenvectors are stored as subsequent matrix rows, in the same order as the corresponding eigenvalues. |
CV_EXPORTS_W void cv::exp | ( | InputArray | src, |
OutputArray | dst | ||
) |
Calculates the exponent of every array element.
The function cv::exp calculates the exponent of every element of the input array:
The maximum relative error is about 7e-6 for single-precision input and less than 1e-10 for double-precision input. Currently, the function converts denormalized values to zeros on output. Special values (NaN, Inf) are not handled.
src | input array. |
dst | output array of the same size and type as src. |
CV_EXPORTS_W void cv::extractChannel | ( | InputArray | src, |
OutputArray | dst, | ||
int | coi | ||
) |
Extracts a single channel from src (coi is 0-based index)
src | input array |
dst | output array |
coi | index of channel to extract |
CV_EXPORTS_W void cv::findNonZero | ( | InputArray | src, |
OutputArray | idx | ||
) |
Returns the list of locations of non-zero pixels.
Given a binary matrix (likely returned from an operation such as threshold(), compare(), >, ==, etc, return all of the non-zero indices as a cv::Mat or std::vector<cv::Point> (x,y) For example:
or
The function do not work with multi-channel arrays. If you need to find non-zero elements across all the channels, use Mat::reshape first to reinterpret the array as single-channel. Or you may extract the particular channel using either extractImageCOI, or mixChannels, or split.
src | single-channel array |
idx | the output array, type of cv::Mat or std::vector<Point>, corresponding to non-zero indices in the input |
CV_EXPORTS_W void cv::flip | ( | InputArray | src, |
OutputArray | dst, | ||
int | flipCode | ||
) |
Flips a 2D array around vertical, horizontal, or both axes.
The function cv::flip flips the array in one of three different ways (row and column indices are 0-based):
The example scenarios of using the function are the following: Vertical flipping of the image (flipCode == 0) to switch between top-left and bottom-left image origin. This is a typical operation in video processing on Microsoft Windows* OS. Horizontal flipping of the image with the subsequent horizontal shift and absolute difference calculation to check for a vertical-axis symmetry (flipCode > 0). Simultaneous horizontal and vertical flipping of the image with the subsequent shift and absolute difference calculation to check for a central symmetry (flipCode < 0). Reversing the order of point arrays (flipCode > 0 or flipCode == 0).
src | input array. |
dst | output array of the same size and type as src. |
flipCode | a flag to specify how to flip the array; 0 means flipping around the x-axis and positive value (for example, 1) means flipping around y-axis. Negative value (for example, -1) means flipping around both axes. |
CV_EXPORTS_W void cv::flipND | ( | InputArray | src, |
OutputArray | dst, | ||
int | axis | ||
) |
Flips a n-dimensional at given axis.
src | input array |
dst | output array that has the same shape of src |
axis | axis that performs a flip on. 0 <= axis < src.dims. |
CV_EXPORTS_W void cv::gemm | ( | InputArray | src1, |
InputArray | src2, | ||
double | alpha, | ||
InputArray | src3, | ||
double | beta, | ||
OutputArray | dst, | ||
int | flags = 0 |
||
) |
Performs generalized matrix multiplication.
The function cv::gemm performs generalized matrix multiplication similar to the gemm functions in BLAS level 3. For example, gemm(src1, src2, alpha, src3, beta, dst, GEMM_1_T + GEMM_3_T)
corresponds to
In case of complex (two-channel) data, performed a complex matrix multiplication.
The function can be replaced with a matrix expression. For example, the above call can be replaced with:
src1 | first multiplied input matrix that could be real(CV_32FC1, CV_64FC1) or complex(CV_32FC2, CV_64FC2). |
src2 | second multiplied input matrix of the same type as src1. |
alpha | weight of the matrix product. |
src3 | third optional delta matrix added to the matrix product; it should have the same type as src1 and src2. |
beta | weight of src3. |
dst | output matrix; it has the proper size and the same type as input matrices. |
flags | operation flags (cv::GemmFlags) |
CV_EXPORTS_W int cv::getOptimalDFTSize | ( | int | vecsize | ) |
Returns the optimal DFT size for a given vector size.
DFT performance is not a monotonic function of a vector size. Therefore, when you calculate 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.
The function cv::getOptimalDFTSize returns the minimum number N that is greater than or equal to vecsize so that the DFT of a vector of size N can be processed efficiently. In the current implementation N = 2 ^p^ * 3 ^q^ * 5 ^r^ for some integer p, q, r.
The function returns a negative number if vecsize is too large (very close to INT_MAX ).
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 processed as getOptimalDFTSize((vecsize+1)/2)*2.
vecsize | vector size. |
CV_EXPORTS_W bool cv::hasNonZero | ( | InputArray | src | ) |
Checks for the presence of at least one non-zero array element.
The function returns whether there are non-zero elements in src
The function do not work with multi-channel arrays. If you need to check non-zero array elements across all the channels, use Mat::reshape first to reinterpret the array as single-channel. Or you may extract the particular channel using either extractImageCOI, or mixChannels, or split.
src | single-channel array. |
CV_EXPORTS void cv::hconcat | ( | const Mat * | src, |
size_t | nsrc, | ||
OutputArray | dst | ||
) |
Applies horizontal concatenation to given matrices.
The function horizontally concatenates two or more cv::Mat matrices (with the same number of rows).
src | input array or vector of matrices. all of the matrices must have the same number of rows and the same depth. |
nsrc | number of matrices in src. |
dst | output array. It has the same number of rows and depth as the src, and the sum of cols of the src. |
CV_EXPORTS void cv::hconcat | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src1 | first input array to be considered for horizontal concatenation. |
src2 | second input array to be considered for horizontal concatenation. |
dst | output array. It has the same number of rows and depth as the src1 and src2, and the sum of cols of the src1 and src2. |
CV_EXPORTS_W void cv::hconcat | ( | InputArrayOfArrays | src, |
OutputArray | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array or vector of matrices. all of the matrices must have the same number of rows and the same depth. |
dst | output array. It has the same number of rows and depth as the src, and the sum of cols of the src. same depth. |
CV_EXPORTS_W void cv::idct | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags = 0 |
||
) |
Calculates the inverse Discrete Cosine Transform of a 1D or 2D array.
idct(src, dst, flags) is equivalent to dct(src, dst, flags | DCT_INVERSE).
src | input floating-point single-channel array. |
dst | output array of the same size and type as src. |
flags | operation flags. |
CV_EXPORTS_W void cv::idft | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags = 0 , |
||
int | nonzeroRows = 0 |
||
) |
Calculates the inverse Discrete Fourier Transform of a 1D or 2D array.
idft(src, dst, flags) is equivalent to dft(src, dst, flags | DFT_INVERSE) .
src | input floating-point real or complex array. |
dst | output array whose size and type depend on the flags. |
flags | operation flags (see dft and DftFlags). |
nonzeroRows | number of dst rows to process; the rest of the rows have undefined content (see the convolution sample in dft description. |
CV_EXPORTS_W void cv::inRange | ( | InputArray | src, |
InputArray | lowerb, | ||
InputArray | upperb, | ||
OutputArray | dst | ||
) |
Checks if array elements lie between the elements of two other arrays.
The function checks the range as follows:
That is, dst (I) is set to 255 (all 1 -bits) if src (I) is within the specified 1D, 2D, 3D, ... box and 0 otherwise.
When the lower and/or upper boundary parameters are scalars, the indexes (I) at lowerb and upperb in the above formulas should be omitted.
src | first input array. |
lowerb | inclusive lower boundary array or a scalar. |
upperb | inclusive upper boundary array or a scalar. |
dst | output array of the same size as src and CV_8U type. |
CV_EXPORTS_W void cv::insertChannel | ( | InputArray | src, |
InputOutputArray | dst, | ||
int | coi | ||
) |
Inserts a single channel to dst (coi is 0-based index)
src | input array |
dst | output array |
coi | index of channel for insertion |
CV_EXPORTS_W double cv::invert | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags = DECOMP_LU |
||
) |
Finds the inverse or pseudo-inverse of a matrix.
The function cv::invert inverts the matrix src and stores the result in dst . When the matrix src is singular or non-square, the function calculates the pseudo-inverse matrix (the dst matrix) so that norm(src*dst - I) is minimal, where I is an identity matrix.
In case of the DECOMP_LU method, the function returns non-zero value if the inverse has been successfully calculated and 0 if src is singular.
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.
Similarly to DECOMP_LU, the method DECOMP_CHOLESKY works only with non-singular square matrices that should also be symmetrical and positively defined. In this case, the function stores the inverted matrix in dst and returns non-zero. Otherwise, it returns 0.
src | input floating-point M x N matrix. |
dst | output matrix of N x M size and the same type as src. |
flags | inversion method (cv::DecompTypes) |
CV_EXPORTS_W void cv::log | ( | InputArray | src, |
OutputArray | dst | ||
) |
Calculates the natural logarithm of every array element.
The function cv::log calculates the natural logarithm of every element of the input array:
Output on zero, negative and special (NaN, Inf) values is undefined.
src | input array. |
dst | output array of the same size and type as src . |
CV_EXPORTS_W void cv::LUT | ( | InputArray | src, |
InputArray | lut, | ||
OutputArray | dst | ||
) |
Performs a look-up table transform of an array.
The function LUT fills the output array with values from the look-up table. Indices of the entries are taken from the input array. That is, the function processes each element of src as follows:
where
src | input array of 8-bit elements. |
lut | look-up table of 256 elements; in case of multi-channel input 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 input array. |
dst | output array of the same size and number of channels as src, and the same depth as lut. |
CV_EXPORTS_W void cv::magnitude | ( | InputArray | x, |
InputArray | y, | ||
OutputArray | magnitude | ||
) |
Calculates the magnitude of 2D vectors.
The function cv::magnitude calculates the magnitude of 2D vectors formed from the corresponding elements of x and y arrays:
x | floating-point array of x-coordinates of the vectors. |
y | floating-point array of y-coordinates of the vectors; it must have the same size as x. |
magnitude | output array of the same size and type as x. |
CV_EXPORTS_W double cv::Mahalanobis | ( | InputArray | v1, |
InputArray | v2, | ||
InputArray | icovar | ||
) |
Calculates the Mahalanobis distance between two vectors.
The function cv::Mahalanobis calculates and returns the weighted distance between two vectors:
The covariance matrix may be calculated using the calcCovarMatrix function and then inverted using the invert function (preferably using the DECOMP_SVD method, as the most accurate).
v1 | first 1D input vector. |
v2 | second 1D input vector. |
icovar | inverse covariance matrix. |
CV_EXPORTS void cv::max | ( | const Mat & | src1, |
const Mat & | src2, | ||
Mat & | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. needed to avoid conflicts with const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
CV_EXPORTS void cv::max | ( | const UMat & | src1, |
const UMat & | src2, | ||
UMat & | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. needed to avoid conflicts with const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
CV_EXPORTS_W void cv::max | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst | ||
) |
Calculates per-element maximum of two arrays or an array and a scalar.
The function cv::max calculates the per-element maximum of two arrays:
or array and a scalar:
src1 | first input array. |
src2 | second input array of the same size and type as src1 . |
dst | output array of the same size and type as src1. |
CV_EXPORTS_W Scalar cv::mean | ( | InputArray | src, |
InputArray | mask = noArray() |
||
) |
Calculates an average (mean) of array elements.
The function cv::mean calculates the mean value M of array elements, independently for each channel, and return it:
When all the mask elements are 0's, the function returns Scalar::all(0)
src | input array that should have from 1 to 4 channels so that the result can be stored in Scalar_ . |
mask | optional operation mask. |
CV_EXPORTS_W void cv::meanStdDev | ( | InputArray | src, |
OutputArray | mean, | ||
OutputArray | stddev, | ||
InputArray | mask = noArray() |
||
) |
Calculates a mean and standard deviation of array elements.
The function cv::meanStdDev calculates the mean and the standard deviation M of array elements independently for each channel and returns it via the output parameters:
When all the mask elements are 0's, the function returns mean=stddev=Scalar::all(0).
src | input array that should have from 1 to 4 channels so that the results can be stored in Scalar_ 's. |
mean | output parameter: calculated mean value. |
stddev | output parameter: calculated standard deviation. |
mask | optional operation mask. |
CV_EXPORTS void cv::merge | ( | const Mat * | mv, |
size_t | count, | ||
OutputArray | dst | ||
) |
Creates one multi-channel array out of several single-channel ones.
The function cv::merge merges several arrays to make a single multi-channel array. That is, each element of the output array will be a concatenation of the elements of the input arrays, where elements of i-th input array are treated as mv[i].channels()-element vectors.
The function cv::split does the reverse operation. If you need to shuffle channels in some other advanced way, use cv::mixChannels.
The following example shows how to merge 3 single channel matrices into a single 3-channel matrix.
mv | input array of matrices to be merged; all the matrices in mv must have the same size and the same depth. |
count | number of input matrices when mv is a plain C array; it must be greater than zero. |
dst | output array of the same size and the same depth as mv[0]; The number of channels will be equal to the parameter count. |
CV_EXPORTS_W void cv::merge | ( | InputArrayOfArrays | mv, |
OutputArray | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
mv | input vector of matrices to be merged; all the matrices in mv must have the same size and the same depth. |
dst | output array of the same size and the same depth as mv[0]; The number of channels will be the total number of channels in the matrix array. |
CV_EXPORTS void cv::min | ( | const Mat & | src1, |
const Mat & | src2, | ||
Mat & | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. needed to avoid conflicts with const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
CV_EXPORTS void cv::min | ( | const UMat & | src1, |
const UMat & | src2, | ||
UMat & | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. needed to avoid conflicts with const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
CV_EXPORTS_W void cv::min | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst | ||
) |
Calculates per-element minimum of two arrays or an array and a scalar.
The function cv::min calculates the per-element minimum of two arrays:
or array and a scalar:
src1 | first input array. |
src2 | second input array of the same size and type as src1. |
dst | output array of the same size and type as src1. |
CV_EXPORTS void cv::minMaxIdx | ( | InputArray | src, |
double * | minVal, | ||
double * | maxVal = 0 , |
||
int * | minIdx = 0 , |
||
int * | maxIdx = 0 , |
||
InputArray | mask = noArray() |
||
) |
Finds the global minimum and maximum in an array.
The function cv::minMaxIdx finds the minimum and maximum element values and their positions. The extremums are searched across the whole array or, if mask is not an empty array, in the specified array region. In case of a sparse matrix, the minimum is found among non-zero elements only. Multi-channel input is supported without mask and extremums indexes (should be nullptr).
src | input single-channel array. |
minVal | pointer to the returned minimum value; NULL is used if not required. |
maxVal | pointer to the returned maximum value; NULL is used if not required. |
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 the minimum element in each dimension are stored there sequentially. |
maxIdx | pointer to the returned maximum location (in nD case). NULL is used if not required. |
mask | specified array region |
CV_EXPORTS void cv::minMaxLoc | ( | const SparseMat & | a, |
double * | minVal, | ||
double * | maxVal, | ||
int * | minIdx = 0 , |
||
int * | maxIdx = 0 |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
a | input single-channel array. |
minVal | pointer to the returned minimum value; NULL is used if not required. |
maxVal | pointer to the returned maximum value; NULL is used if not required. |
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 the minimum element in each dimension are stored there sequentially. |
maxIdx | pointer to the returned maximum location (in nD case). NULL is used if not required. |
CV_EXPORTS_W void cv::minMaxLoc | ( | InputArray | src, |
CV_OUT double * | minVal, | ||
CV_OUT double * | maxVal = 0 , |
||
CV_OUT Point * | minLoc = 0 , |
||
CV_OUT Point * | maxLoc = 0 , |
||
InputArray | mask = noArray() |
||
) |
Finds the global minimum and maximum in an array.
The function cv::minMaxLoc finds the minimum and maximum element values and their positions. The extremums are searched across the whole array or, if mask is not an empty array, in the specified array region.
The function do not work with multi-channel arrays. If you need to find minimum or maximum elements across all the channels, use Mat::reshape first to reinterpret the array as single-channel. Or you may extract the particular channel using either extractImageCOI, or mixChannels, or split.
src | input single-channel array. |
minVal | pointer to the returned minimum value; NULL is used if not required. |
maxVal | pointer to the returned maximum value; NULL is used if not required. |
minLoc | pointer to the returned minimum location (in 2D case); NULL is used if not required. |
maxLoc | pointer to the returned maximum location (in 2D case); NULL is used if not required. |
mask | optional mask used to select a sub-array. |
CV_EXPORTS void cv::mixChannels | ( | const Mat * | src, |
size_t | nsrcs, | ||
Mat * | dst, | ||
size_t | ndsts, | ||
const int * | fromTo, | ||
size_t | npairs | ||
) |
Copies specified channels from input arrays to the specified channels of output arrays.
The function cv::mixChannels provides an advanced mechanism for shuffling image channels.
cv::split,cv::merge,cv::extractChannel,cv::insertChannel and some forms of cv::cvtColor are partial cases of cv::mixChannels.
In the example below, the code splits a 4-channel BGRA image into a 3-channel BGR (with B and R channels swapped) and a separate alpha-channel image:
src | input array or vector of matrices; all of the matrices must have the same size and the same depth. |
nsrcs | number of matrices in src . |
dst | output array or vector of matrices; all the matrices must be allocated; their size and depth must be the same as in src[0] . |
ndsts | number of matrices in dst . |
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 src, fromTo[k*2+1] is an index of the output channel in dst; the continuous channel numbering is used: the first input image channels are indexed from 0 to src[0].channels()-1, the second input image channels are indexed from src[0].channels() to src[0].channels() + src[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 | number of index pairs in fromTo . |
CV_EXPORTS void cv::mixChannels | ( | InputArrayOfArrays | src, |
InputOutputArrayOfArrays | dst, | ||
const int * | fromTo, | ||
size_t | npairs | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array or vector of matrices; all of the matrices must have the same size and the same depth. |
dst | output array or vector of matrices; all the matrices must be allocated; their size and depth must be the same as in src[0]. |
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 src, fromTo[k*2+1] is an index of the output channel in dst; the continuous channel numbering is used: the first input image channels are indexed from 0 to src[0].channels()-1, the second input image channels are indexed from src[0].channels() to src[0].channels() + src[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 | number of index pairs in fromTo. |
CV_EXPORTS_W void cv::mixChannels | ( | InputArrayOfArrays | src, |
InputOutputArrayOfArrays | dst, | ||
const std::vector< int > & | fromTo | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array or vector of matrices; all of the matrices must have the same size and the same depth. |
dst | output array or vector of matrices; all the matrices must be allocated; their size and depth must be the same as in src[0]. |
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 src, fromTo[k*2+1] is an index of the output channel in dst; the continuous channel numbering is used: the first input image channels are indexed from 0 to src[0].channels()-1, the second input image channels are indexed from src[0].channels() to src[0].channels() + src[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 . |
CV_EXPORTS_W void cv::mulSpectrums | ( | InputArray | a, |
InputArray | b, | ||
OutputArray | c, | ||
int | flags, | ||
bool | conjB = false |
||
) |
Performs the per-element multiplication of two Fourier spectrums.
The function cv::mulSpectrums performs the per-element multiplication of the two CCS-packed or complex matrices that are results of a real or complex Fourier transform.
The function, together with dft and idft, may be used to calculate convolution (pass conjB=false ) or correlation (pass conjB=true ) 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 dft for details).
a | first input array. |
b | second input array of the same size and type as src1 . |
c | output array of the same size and type as src1 . |
flags | operation flags; currently, the only supported flag is cv::DFT_ROWS, which indicates that each row of src1 and src2 is an independent 1D Fourier spectrum. If you do not want to use this flag, then simply add a 0 as value. |
conjB | optional flag that conjugates the second input array before the multiplication (true) or not (false). |
CV_EXPORTS_W void cv::multiply | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
double | scale = 1 , |
||
int | dtype = -1 |
||
) |
Calculates the per-element scaled product of two arrays.
The function multiply calculates the per-element product of two arrays:
There is also a MatrixExpressions -friendly variant of the first function. See Mat::mul .
For a not-per-element matrix product, see gemm .
multiply(src,X)
means multiply(src,(X,X,X,X))
. multiply(src,(X,))
means multiply(src,(X,0,0,0))
. src1 | first input array. |
src2 | second input array of the same size and the same type as src1. |
dst | output array of the same size and type as src1. |
scale | optional scale factor. |
dtype | optional depth of the output array |
CV_EXPORTS_W void cv::mulTransposed | ( | InputArray | src, |
OutputArray | dst, | ||
bool | aTa, | ||
InputArray | delta = noArray() , |
||
double | scale = 1 , |
||
int | dtype = -1 |
||
) |
Calculates the product of a matrix and its transposition.
The function cv::mulTransposed calculates the product of src and its transposition:
if aTa=true, and
otherwise. The function is used to calculate the covariance matrix. With zero delta, it can be used as a faster substitute for general matrix product A*B when B=A'
src | input single-channel matrix. Note that unlike gemm, the function can multiply not only floating-point matrices. |
dst | output square matrix. |
aTa | Flag specifying the multiplication ordering. See the description below. |
delta | Optional delta matrix subtracted from src before the multiplication. When the matrix is empty ( delta=noArray() ), 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 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 output matrix. See the dtype parameter description below. |
scale | Optional scale factor for the matrix product. |
dtype | Optional type of the output matrix. When it is negative, the output matrix will have the same type as src . Otherwise, it will be type=CV_MAT_DEPTH(dtype) that should be either CV_32F or CV_64F . |
CV_EXPORTS double cv::norm | ( | const SparseMat & | src, |
int | normType | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | first input array. |
normType | type of the norm (see NormTypes). |
CV_EXPORTS_W double cv::norm | ( | InputArray | src1, |
InputArray | src2, | ||
int | normType = NORM_L2 , |
||
InputArray | mask = noArray() |
||
) |
Calculates an absolute difference norm or a relative difference norm.
This version of cv::norm calculates the absolute difference norm or the relative difference norm of arrays src1 and src2. The type of norm to calculate is specified using NormTypes.
src1 | first input array. |
src2 | second input array of the same size and the same type as src1. |
normType | type of the norm (see NormTypes). |
mask | optional operation mask; it must have the same size as src1 and CV_8UC1 type. |
CV_EXPORTS_W double cv::norm | ( | InputArray | src1, |
int | normType = NORM_L2 , |
||
InputArray | mask = noArray() |
||
) |
Calculates the absolute norm of an array.
This version of norm calculates the absolute norm of src1. The type of norm to calculate is specified using NormTypes.
As example for one array consider the function . The and norm for the sample value is calculated as follows
and for the calculation is
The following graphic shows all values for the three norm functions and . It is notable that the norm forms the upper and the norm forms the lower border for the example function .
When the mask parameter is specified and it is not empty, the norm is
If normType is not specified, NORM_L2 is used. calculated only over the region specified by the mask.
Multi-channel input arrays are treated as single-channel arrays, that is, the results for all channels are combined.
Hamming norms can only be calculated with CV_8U depth arrays.
src1 | first input array. |
normType | type of the norm (see NormTypes). |
mask | optional operation mask; it must have the same size as src1 and CV_8UC1 type. |
CV_EXPORTS void cv::normalize | ( | const SparseMat & | src, |
SparseMat & | dst, | ||
double | alpha, | ||
int | normType | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array. |
dst | output array of the same size as src . |
alpha | norm value to normalize to or the lower range boundary in case of the range normalization. |
normType | normalization type (see cv::NormTypes). |
CV_EXPORTS_W void cv::normalize | ( | InputArray | src, |
InputOutputArray | dst, | ||
double | alpha = 1 , |
||
double | beta = 0 , |
||
int | norm_type = NORM_L2 , |
||
int | dtype = -1 , |
||
InputArray | mask = noArray() |
||
) |
Normalizes the norm or value range of an array.
The function cv::normalize normalizes scale and shift the input array elements so that
(where p=Inf, 1 or 2) when normType=NORM_INF, NORM_L1, or NORM_L2, respectively; or so that
when normType=NORM_MINMAX (for dense arrays only). The optional mask specifies a sub-array to be normalized. This means that the norm or min-n-max are calculated over the sub-array, and then this sub-array is modified to be normalized. If you want to only use the mask to calculate the norm or min-max but modify the whole array, you can use norm and Mat::convertTo.
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.
Possible usage with some positive example data:
src | input array. |
dst | output array of the same size as src . |
alpha | norm value to normalize to or the lower range boundary in case of the range normalization. |
beta | upper range boundary in case of the range normalization; it is not used for the norm normalization. |
norm_type | normalization type (see cv::NormTypes). |
dtype | when negative, the output array has the same type as src; otherwise, it has the same number of channels as src and the depth =CV_MAT_DEPTH(dtype). |
mask | optional operation mask. |
CV_EXPORTS_W void cv::patchNaNs | ( | InputOutputArray | a, |
double | val = 0 |
||
) |
Replaces NaNs by given number.
a | input/output matrix (CV_32F type). |
val | value to convert the NaNs |
CV_EXPORTS_W void cv::PCABackProject | ( | InputArray | data, |
InputArray | mean, | ||
InputArray | eigenvectors, | ||
OutputArray | result | ||
) |
wrap PCA::backProject
CV_EXPORTS_W void cv::PCACompute | ( | InputArray | data, |
InputOutputArray | mean, | ||
OutputArray | eigenvectors, | ||
double | retainedVariance | ||
) |
wrap PCA::operator()
CV_EXPORTS_W void cv::PCACompute | ( | InputArray | data, |
InputOutputArray | mean, | ||
OutputArray | eigenvectors, | ||
int | maxComponents = 0 |
||
) |
wrap PCA::operator()
CV_EXPORTS_W void cv::PCAProject | ( | InputArray | data, |
InputArray | mean, | ||
InputArray | eigenvectors, | ||
OutputArray | result | ||
) |
wrap PCA::project
CV_EXPORTS_W void cv::perspectiveTransform | ( | InputArray | src, |
OutputArray | dst, | ||
InputArray | m | ||
) |
Performs the perspective matrix transformation of vectors.
The function cv::perspectiveTransform transforms every element of src by treating it as a 2D or 3D vector, in the following way:
where
and
Here a 3D vector transformation is shown. In case of a 2D vector transformation, the z component is omitted.
src | input two-channel or three-channel floating-point array; each element is a 2D/3D vector to be transformed. |
dst | output array of the same size and type as src. |
m | 3x3 or 4x4 floating-point transformation matrix. |
CV_EXPORTS_W void cv::phase | ( | InputArray | x, |
InputArray | y, | ||
OutputArray | angle, | ||
bool | angleInDegrees = false |
||
) |
Calculates the rotation angle of 2D vectors.
The function cv::phase calculates the rotation angle of each 2D vector that is formed from the corresponding elements of x and y :
The angle estimation accuracy is about 0.3 degrees. When x(I)=y(I)=0 , the corresponding angle(I) is set to 0.
x | input floating-point array of x-coordinates of 2D vectors. |
y | input array of y-coordinates of 2D vectors; it must have the same size and the same type as x. |
angle | output array of vector angles; it has the same size and same type as x . |
angleInDegrees | when true, the function calculates the angle in degrees, otherwise, they are measured in radians. |
CV_EXPORTS_W void cv::polarToCart | ( | InputArray | magnitude, |
InputArray | angle, | ||
OutputArray | x, | ||
OutputArray | y, | ||
bool | angleInDegrees = false |
||
) |
Calculates x and y coordinates of 2D vectors from their magnitude and angle.
The function cv::polarToCart calculates the Cartesian coordinates of each 2D vector represented by the corresponding elements of magnitude and angle:
The relative accuracy of the estimated coordinates is about 1e-6.
magnitude | input 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. |
angle | input floating-point array of angles of 2D vectors. |
x | output array of x-coordinates of 2D vectors; it has the same size and type as angle. |
y | output array of y-coordinates of 2D vectors; it has the same size and type as angle. |
angleInDegrees | when true, the input angles are measured in degrees, otherwise, they are measured in radians. |
CV_EXPORTS_W void cv::pow | ( | InputArray | src, |
double | power, | ||
OutputArray | dst | ||
) |
Raises every array element to a power.
The function cv::pow raises every element of the input array to power :
So, 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:
For some values of power, such as integer values, 0.5 and -0.5, specialized faster algorithms are used.
Special values (NaN, Inf) are not handled.
src | input array. |
power | exponent of power. |
dst | output array of the same size and type as src. |
CV_EXPORTS_W double cv::PSNR | ( | InputArray | src1, |
InputArray | src2, | ||
double | R = 255. |
||
) |
Computes the Peak Signal-to-Noise Ratio (PSNR) image quality metric.
This function calculates the Peak Signal-to-Noise Ratio (PSNR) image quality metric in decibels (dB), between two input arrays src1 and src2. The arrays must have the same type.
The PSNR is calculated as follows:
where R is the maximum integer value of depth (e.g. 255 in the case of CV_8U data) and MSE is the mean squared error between the two arrays.
src1 | first input array. |
src2 | second input array of the same size as src1. |
R | the maximum pixel value (255 by default) |
CV_EXPORTS_W void cv::randn | ( | InputOutputArray | dst, |
InputArray | mean, | ||
InputArray | stddev | ||
) |
Fills the array with normally distributed random numbers.
The function cv::randn fills the matrix dst with normally distributed random numbers with the specified mean vector and the standard deviation matrix. The generated random numbers are clipped to fit the value range of the output array data type.
dst | output array of random numbers; the array must be pre-allocated and have 1 to 4 channels. |
mean | mean value (expectation) of the generated random numbers. |
stddev | standard deviation of the generated random numbers; it can be either a vector (in which case a diagonal standard deviation matrix is assumed) or a square matrix. |
CV_EXPORTS_W void cv::randShuffle | ( | InputOutputArray | dst, |
double | iterFactor = 1. , |
||
RNG * | rng = 0 |
||
) |
Shuffles the array elements randomly.
The function cv::randShuffle shuffles the specified 1D array by randomly choosing pairs of elements and swapping them. The number of such swap operations will be dst.rows*dst.cols*iterFactor .
dst | input/output numerical 1D array. |
iterFactor | scale factor that determines the number of random swap operations (see the details below). |
rng | optional random number generator used for shuffling; if it is zero, theRNG () is used instead. |
CV_EXPORTS_W void cv::randu | ( | InputOutputArray | dst, |
InputArray | low, | ||
InputArray | high | ||
) |
Generates a single uniformly-distributed random number or an array of random numbers.
Non-template variant of the function fills the matrix dst with uniformly-distributed random numbers from the specified range:
dst | output array of random numbers; the array must be pre-allocated. |
low | inclusive lower boundary of the generated random numbers. |
high | exclusive upper boundary of the generated random numbers. |
CV_EXPORTS_W void cv::reduce | ( | InputArray | src, |
OutputArray | dst, | ||
int | dim, | ||
int | rtype, | ||
int | dtype = -1 |
||
) |
Reduces a matrix to a vector.
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 REDUCE_MAX and REDUCE_MIN, the output image should have the same type as the source one. In case of REDUCE_SUM, REDUCE_SUM2 and 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.
The following code demonstrates its usage for a single channel matrix.
And the following code demonstrates its usage for a two-channel matrix.
src | input 2D matrix. |
dst | output vector. Its size and type is defined by dim and dtype parameters. |
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. |
rtype | reduction operation that could be one of ReduceTypes |
dtype | when negative, the output vector will have the same type as the input matrix, otherwise, its type will be CV_MAKE_TYPE(CV_MAT_DEPTH(dtype), src.channels()). |
CV_EXPORTS_W void cv::reduceArgMax | ( | InputArray | src, |
OutputArray | dst, | ||
int | axis, | ||
bool | lastIndex = false |
||
) |
Finds indices of max elements along provided axis.
src | input single-channel array. |
dst | output array of type CV_32SC1 with the same dimensionality as src, except for axis being reduced - it should be set to 1. |
lastIndex | whether to get the index of first or last occurrence of max. |
axis | axis to reduce along. |
CV_EXPORTS_W void cv::reduceArgMin | ( | InputArray | src, |
OutputArray | dst, | ||
int | axis, | ||
bool | lastIndex = false |
||
) |
Finds indices of min elements along provided axis.
src | input single-channel array. |
dst | output array of type CV_32SC1 with the same dimensionality as src, except for axis being reduced - it should be set to 1. |
lastIndex | whether to get the index of first or last occurrence of min. |
axis | axis to reduce along. |
CV_EXPORTS Mat cv::repeat | ( | const Mat & | src, |
int | ny, | ||
int | nx | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array to replicate. |
ny | Flag to specify how many times the src is repeated along the vertical axis. |
nx | Flag to specify how many times the src is repeated along the horizontal axis. |
CV_EXPORTS_W void cv::repeat | ( | InputArray | src, |
int | ny, | ||
int | nx, | ||
OutputArray | dst | ||
) |
Fills the output array with repeated copies of the input array.
The function cv::repeat duplicates the input array one or more times along each of the two axes:
The second variant of the function is more convenient to use with MatrixExpressions.
src | input array to replicate. |
ny | Flag to specify how many times the src is repeated along the vertical axis. |
nx | Flag to specify how many times the src is repeated along the horizontal axis. |
dst | output array of the same type as src . |
CV_EXPORTS_W void cv::rotate | ( | InputArray | src, |
OutputArray | dst, | ||
int | rotateCode | ||
) |
Rotates a 2D array in multiples of 90 degrees. The function cv::rotate rotates the array in one of three different ways: Rotate by 90 degrees clockwise (rotateCode = ROTATE_90_CLOCKWISE). Rotate by 180 degrees clockwise (rotateCode = ROTATE_180). Rotate by 270 degrees clockwise (rotateCode = ROTATE_90_COUNTERCLOCKWISE).
src | input array. |
dst | output array of the same type as src. The size is the same with ROTATE_180, and the rows and cols are switched for ROTATE_90_CLOCKWISE and ROTATE_90_COUNTERCLOCKWISE. |
rotateCode | an enum to specify how to rotate the array; see the enum RotateFlags |
CV_EXPORTS_W void cv::scaleAdd | ( | InputArray | src1, |
double | alpha, | ||
InputArray | src2, | ||
OutputArray | dst | ||
) |
Calculates the sum of a scaled array and another array.
The function scaleAdd is one of the classical primitive linear algebra operations, known as DAXPY or SAXPY in BLAS. It calculates the sum of a scaled array and another array:
The function can also be emulated with a matrix expression, for example:
src1 | first input array. |
alpha | scale factor for the first array. |
src2 | second input array of the same size and type as src1. |
dst | output array of the same size and type as src1. |
CV_EXPORTS_W void cv::setIdentity | ( | InputOutputArray | mtx, |
const Scalar & | s = Scalar(1) |
||
) |
Initializes a scaled identity matrix.
The function cv::setIdentity initializes a scaled identity matrix:
The function can also be emulated using the matrix initializers and the matrix expressions:
mtx | matrix to initialize (not necessarily square). |
s | value to assign to diagonal elements. |
CV_EXPORTS_W void cv::setRNGSeed | ( | int | seed | ) |
Sets state of default random number generator.
The function cv::setRNGSeed sets state of default random number generator to custom value.
seed | new state for default random number generator |
CV_EXPORTS_W bool cv::solve | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
int | flags = DECOMP_LU |
||
) |
Solves one or more linear systems or least-squares problems.
The function cv::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 ):
If DECOMP_LU or DECOMP_CHOLESKY method is used, the function returns 1 if src1 (or ) 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.
src1 | input matrix on the left-hand side of the system. |
src2 | input matrix on the right-hand side of the system. |
dst | output solution. |
flags | solution (matrix inversion) method (DecompTypes) |
CV_EXPORTS_W int cv::solveCubic | ( | InputArray | coeffs, |
OutputArray | roots | ||
) |
Finds the real roots of a cubic equation.
The function solveCubic finds the real roots of a cubic equation:
The roots are stored in the roots array.
coeffs | equation coefficients, an array of 3 or 4 elements. |
roots | output array of real roots that has 1 or 3 elements. |
CV_EXPORTS_W double cv::solvePoly | ( | InputArray | coeffs, |
OutputArray | roots, | ||
int | maxIters = 300 |
||
) |
Finds the real or complex roots of a polynomial equation.
The function cv::solvePoly finds real and complex roots of a polynomial equation:
coeffs | array of polynomial coefficients. |
roots | output (complex) array of roots. |
maxIters | maximum number of iterations the algorithm does. |
CV_EXPORTS_W void cv::sort | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags | ||
) |
Sorts each row or each column of a matrix.
The function cv::sort sorts each matrix row or each matrix column in ascending or descending order. So you should pass two operation flags to get desired behaviour. If you want to sort matrix rows or columns lexicographically, you can use STL std::sort generic function with the proper comparison predicate.
src | input single-channel array. |
dst | output array of the same size and type as src. |
flags | operation flags, a combination of SortFlags |
CV_EXPORTS_W void cv::sortIdx | ( | InputArray | src, |
OutputArray | dst, | ||
int | flags | ||
) |
Sorts each row or each column of a matrix.
The function cv::sortIdx sorts each matrix row or each matrix column in the ascending or descending order. So you should pass two operation flags to get desired behaviour. Instead of reordering the elements themselves, it stores the indices of sorted elements in the output array. For example:
src | input single-channel array. |
dst | output integer array of the same size as src. |
flags | operation flags that could be a combination of cv::SortFlags |
CV_EXPORTS void cv::split | ( | const Mat & | src, |
Mat * | mvbegin | ||
) |
Divides a multi-channel array into several single-channel arrays.
The function cv::split splits a multi-channel array into separate single-channel arrays:
If you need to extract a single channel or do some other sophisticated channel permutation, use mixChannels.
The following example demonstrates how to split a 3-channel matrix into 3 single channel matrices.
src | input multi-channel array. |
mvbegin | output array; the number of arrays must match src.channels(); the arrays themselves are reallocated, if needed. |
CV_EXPORTS_W void cv::split | ( | InputArray | m, |
OutputArrayOfArrays | mv | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
m | input multi-channel array. |
mv | output vector of arrays; the arrays themselves are reallocated, if needed. |
CV_EXPORTS_W void cv::sqrt | ( | InputArray | src, |
OutputArray | dst | ||
) |
Calculates a square root of array elements.
The function cv::sqrt calculates a square root of each input 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 .
src | input floating-point array. |
dst | output array of the same size and type as src. |
CV_EXPORTS_W void cv::subtract | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst, | ||
InputArray | mask = noArray() , |
||
int | dtype = -1 |
||
) |
Calculates the per-element difference between two arrays or array and a scalar.
The function subtract calculates:
src1.channels()
:
src2.channels()
:
SubRS
: where I is a multi-dimensional index of array elements. In case of multi-channel arrays, each channel is processed independently.
The first function in the list above can be replaced with matrix expressions:
The input arrays and the output array can all have the same or different depths. For example, you can subtract to 8-bit unsigned arrays and store the difference in a 16-bit signed array. Depth of the output array is determined by dtype parameter. In the second and third cases above, as well as in the first case, when src1.depth() == src2.depth(), dtype can be set to the default -1. In this case the output array will have the same depth as the input array, be it src1, src2 or both.
subtract(src,X)
means subtract(src,(X,X,X,X))
. subtract(src,(X,))
means subtract(src,(X,0,0,0))
. src1 | first input array or a scalar. |
src2 | second input array or a scalar. |
dst | output array of the same size and the same number of channels as the input array. |
mask | optional operation mask; this is an 8-bit single channel array that specifies elements of the output array to be changed. |
dtype | optional depth of the output array |
CV_EXPORTS_W void cv::SVBackSubst | ( | InputArray | w, |
InputArray | u, | ||
InputArray | vt, | ||
InputArray | rhs, | ||
OutputArray | dst | ||
) |
wrap SVD::backSubst
CV_EXPORTS_W void cv::SVDecomp | ( | InputArray | src, |
OutputArray | w, | ||
OutputArray | u, | ||
OutputArray | vt, | ||
int | flags = 0 |
||
) |
wrap SVD::compute
CV_EXPORTS RNG& cv::theRNG | ( | ) |
Returns the default random number generator.
The function cv::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 randu or 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() .
CV_EXPORTS_W Scalar cv::trace | ( | InputArray | mtx | ) |
Returns the trace of a matrix.
The function cv::trace returns the sum of the diagonal elements of the matrix mtx .
mtx | input matrix. |
CV_EXPORTS_W void cv::transform | ( | InputArray | src, |
OutputArray | dst, | ||
InputArray | m | ||
) |
Performs the matrix transformation of every array element.
The function cv::transform performs the matrix transformation of every element of the array src and stores the results in dst :
(when m.cols=src.channels() ), or
(when m.cols=src.channels()+1 )
Every element of the N -channel array src is interpreted as N -element vector that is transformed using the M x N or M x (N+1) matrix m to M-element vector - the corresponding element of the output array dst .
The function may be used for geometrical transformation of N -dimensional points, arbitrary linear color space transformation (such as various kinds of RGB to YUV transforms), shuffling the image channels, and so forth.
src | input array that must have as many channels (1 to 4) as m.cols or m.cols-1. |
dst | output array of the same size and depth as src; it has as many channels as m.rows. |
m | transformation 2x2 or 2x3 floating-point matrix. |
CV_EXPORTS_W void cv::transpose | ( | InputArray | src, |
OutputArray | dst | ||
) |
Transposes a matrix.
The function cv::transpose transposes the matrix src :
src | input array. |
dst | output array of the same type as src. |
CV_EXPORTS_W void cv::transposeND | ( | InputArray | src, |
const std::vector< int > & | order, | ||
OutputArray | dst | ||
) |
Transpose for n-dimensional matrices.
src | input array. |
order | a permutation of [0,1,..,N-1] where N is the number of axes of src. The i'th axis of dst will correspond to the axis numbered order[i] of the input. |
dst | output array of the same type as src. |
CV_EXPORTS void cv::vconcat | ( | const Mat * | src, |
size_t | nsrc, | ||
OutputArray | dst | ||
) |
Applies vertical concatenation to given matrices.
The function vertically concatenates two or more cv::Mat matrices (with the same number of cols).
src | input array or vector of matrices. all of the matrices must have the same number of cols and the same depth. |
nsrc | number of matrices in src. |
dst | output array. It has the same number of cols and depth as the src, and the sum of rows of the src. |
CV_EXPORTS void cv::vconcat | ( | InputArray | src1, |
InputArray | src2, | ||
OutputArray | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src1 | first input array to be considered for vertical concatenation. |
src2 | second input array to be considered for vertical concatenation. |
dst | output array. It has the same number of cols and depth as the src1 and src2, and the sum of rows of the src1 and src2. |
CV_EXPORTS_W void cv::vconcat | ( | InputArrayOfArrays | src, |
OutputArray | dst | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
src | input array or vector of matrices. all of the matrices must have the same number of cols and the same depth |
dst | output array. It has the same number of cols and depth as the src, and the sum of rows of the src. same depth. |
InputOutputArray OutputArray OutputArray cv::eigenvalues |
InputOutputArray OutputArray cv::eigenvectors |
InputOutputArray OutputArray OutputArray int cv::maxComponents = 0) |
InputOutputArray cv::mean |
InputOutputArray OutputArray OutputArray double cv::retainedVariance |