Calculates absolute difference between two arrays.
Parameters: |
---|
The function calculates absolute difference between two arrays.
All the arrays must have the same data type and the same size (or ROI size).
Calculates absolute difference between an array and a scalar.
Parameters: |
---|
The function calculates absolute difference between an array and a scalar.
All the arrays must have the same data type and the same size (or ROI size).
Computes the per-element sum of two arrays.
Parameters: |
---|
The function adds one array to another:
dst(I)=src1(I)+src2(I) if mask(I)!=0
All the arrays must have the same type, except the mask, and the same size (or ROI size). For types that have limited range this operation is saturating.
Computes the sum of an array and a scalar.
Parameters: |
---|
The function adds a scalar value to every element in the source array src1 and stores the result in dst . For types that have limited range this operation is saturating.
dst(I)=src(I)+value if mask(I)!=0
All the arrays must have the same type, except the mask, and the same size (or ROI size).
Computes the weighted sum of two arrays.
Parameters: |
---|
The function calculates the weighted sum of two arrays as follows:
dst(I)=src1(I)*alpha+src2(I)*beta+gamma
All the arrays must have the same type and the same size (or ROI size). For types that have limited range this operation is saturating.
Calculates per-element bit-wise conjunction of two arrays.
Parameters: |
---|
The function calculates per-element bit-wise logical conjunction of two arrays:
dst(I)=src1(I)&src2(I) if mask(I)!=0
In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size.
Calculates per-element bit-wise conjunction of an array and a scalar.
Parameters: |
---|
The function calculates per-element bit-wise conjunction of an array and a scalar:
dst(I)=src(I)&value if mask(I)!=0
Prior to the actual operation, the scalar is converted to the same type as that of the array(s). In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size.
Calculates average (mean) of array elements.
Parameters: |
---|
The function calculates the average value M of array elements, independently for each channel:
If the array is IplImage and COI is set, the function processes the selected channel only and stores the average to the first scalar component .
Calculates average (mean) of array elements.
Parameters: |
---|
The function calculates the average value and standard deviation of array elements, independently for each channel:
If the array is IplImage and COI is set, the function processes the selected channel only and stores the average and standard deviation to the first components of the output scalars ( and ).
Calculates covariance matrix of a set of vectors.
Parameters: |
|
---|
The function calculates the covariance matrix and, optionally, the mean vector of the set of input vectors. The function can be used for PCA, for comparing vectors using Mahalanobis distance and so forth.
Calculates the magnitude and/or angle of 2d vectors.
Parameters: |
|
---|
The function calculates either the magnitude, angle, or both of every 2d vector (x(I),y(I)):
magnitude(I)=sqrt(x(I)^2^+y(I)^2^ ),
angle(I)=atan(y(I)/x(I) )
The angles are calculated with 0.1 degree accuracy. For the (0,0) point, the angle is set to 0.
Calculates the cubic root
Parameters: |
|
---|
The function calculates the cubic root of the argument, and normally it is faster than pow(value,1./3) . In addition, negative arguments are handled properly. Special values ( , NaN) are not handled.
Clears a specific array element.
Parameters: |
|
---|
The function ClearND clears (sets to zero) a specific element of a dense array or deletes the element of a sparse array. If the sparse array element does not exists, the function does nothing.
Makes a full copy of an image, including the header, data, and ROI.
Parameters: |
|
---|
The returned IplImage* points to the image copy.
Creates a full copy of a matrix and returns a pointer to the copy.
Performs per-element comparison of two arrays.
Parameters: |
|
---|
The function compares the corresponding elements of two arrays and fills the destination mask array:
dst(I)=src1(I) op src2(I),
dst(I) is set to 0xff (all 1 -bits) if the specific relation between the elements is true and 0 otherwise. All the arrays must have the same type, except the destination, and the same size (or ROI size)
Performs per-element comparison of an array and a scalar.
Parameters: |
|
---|
The function compares the corresponding elements of an array and a scalar and fills the destination mask array:
dst(I)=src(I) op scalar
where op is .
dst(I) is set to 0xff (all 1 -bits) if the specific relation between the elements is true and 0 otherwise. All the arrays must have the same size (or ROI size).
Converts one array to another.
Parameters: |
---|
The type of conversion is done with rounding and saturation, that is if the result of scaling + conversion can not be represented exactly by a value of the destination array element type, it is set to the nearest representable value on the real axis.
All the channels of multi-channel arrays are processed independently.
Converts one array to another with optional linear transformation.
Parameters: |
---|
The function has several different purposes, and thus has several different names. It copies one array to another with optional scaling, which is performed first, and/or optional type conversion, performed after:
All the channels of multi-channel arrays are processed independently.
The type of conversion is done with rounding and saturation, that is if the result of scaling + conversion can not be represented exactly by a value of the destination array element type, it is set to the nearest representable value on the real axis.
In the case of scale=1, shift=0 no prescaling is done. This is a specially optimized case and it has the appropriate Convert name. If source and destination array types have equal types, this is also a special case that can be used to scale and shift a matrix or an image and that is caled Scale .
Converts input array elements to another 8-bit unsigned integer with optional linear transformation.
Parameters: |
---|
The function is similar to ConvertScale , but it stores absolute values of the conversion results:
The function supports only destination arrays of 8u (8-bit unsigned integers) type; for other types the function can be emulated by a combination of ConvertScale and Abs functions.
Converts input array elements to another 8-bit unsigned integer with optional linear transformation.
Parameters: |
|
---|
The function is similar to ConvertScale , but it stores absolute values of the conversion results:
The function supports only destination arrays of 8u (8-bit unsigned integers) type; for other types the function can be emulated by a combination of ConvertScale and Abs functions.
Copies one array to another.
Parameters: |
---|
The function copies selected elements from an input array to an output array:
If any of the passed arrays is of IplImage type, then its ROI and COI fields are used. Both arrays must have the same type, the same number of dimensions, and the same size. The function can also copy sparse arrays (mask is not supported in this case).
Counts non-zero array elements.
Parameters: |
|
---|
The function returns the number of non-zero elements in arr:
In the case of IplImage both ROI and COI are supported.
The function allocates image, matrix or multi-dimensional array data. Note that in the case of matrix types OpenCV allocation functions are used and in the case of IplImage they are used unless CV_TURN_ON_IPL_COMPATIBILITY was called. In the latter case IPL functions are used to allocate the data.
Creates an image header and allocates the image data.
Parameters: |
---|
Creates an image header but does not allocate the image data.
Parameters: |
|
---|
Creates a matrix header and allocates the matrix data.
Parameters: |
|
---|
Creates a matrix header but does not allocate the matrix data.
Parameters: |
|
---|
The function allocates a new matrix header and returns a pointer to it. The matrix data can then be allocated using CreateData or set explicitly to user-allocated data via SetData .
Creates the header and allocates the data for a multi-dimensional dense array.
Parameters: |
|
---|
This is a short form for:
Creates a new matrix header but does not allocate the matrix data.
Parameters: |
|
---|
The function allocates a header for a multi-dimensional dense array. The array data can further be allocated using CreateData or set explicitly to user-allocated data via SetData .
Calculates the cross product of two 3D vectors.
Parameters: |
---|
The function calculates the cross product of two 3D vectors:
or:
Performs a forward or inverse Discrete Cosine transform of a 1D or 2D floating-point array.
Parameters: |
|
---|
The function performs a forward or inverse transform of a 1D or 2D floating-point array:
Forward Cosine transform of 1D vector of elements:
where
and , for .
Inverse Cosine transform of 1D vector of N elements:
(since is orthogonal matrix, )
Forward Cosine transform of 2D matrix:
Inverse Cosine transform of 2D vector of elements:
Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array.
Parameters: |
|
---|
The function performs a forward or inverse transform of a 1D or 2D floating-point array:
Forward Fourier transform of 1D vector of N elements:
,
Inverse Fourier transform of 1D vector of N elements:
Forward Fourier transform of 2D vector of M N elements:
Inverse Fourier transform of 2D vector of M N elements:
In the case of real (single-channel) data, the packed format, borrowed from IPL, is used to represent the result of a forward Fourier transform or input for an inverse Fourier transform:
Note: the last column is present if N is even, the last row is present if M is even. In the case of 1D real transform the result looks like the first row of the above matrix.
Here is the example of how to compute 2D convolution using DFT.
The function returns the determinant of the square matrix mat . The direct method is used for small matrices and Gaussian elimination is used for larger matrices. For symmetric positive-determined matrices, it is also possible to run SVD with and then calculate the determinant as a product of the diagonal elements of .
Performs per-element division of two arrays.
Parameters: |
---|
The function divides one array by another:
All the arrays must have the same type and the same size (or ROI size).
Calculates the dot product of two arrays in Euclidian metrics.
Parameters: |
---|
The function calculates and returns the Euclidean dot product of two arrays.
In the case of multiple channel arrays, the results for all channels are accumulated. In particular, cvDotProduct(a,a) where a is a complex vector, will return . The function can process multi-dimensional arrays, row by row, layer by layer, and so on.
Computes eigenvalues and eigenvectors of a symmetric matrix.
Parameters: |
|
---|
The function computes the eigenvalues and eigenvectors of matrix A :
mat*evects(i,:)' = evals(i)*evects(i,:)' (in MATLAB notation)
If either low- or highindex is supplied the other is required, too. Indexing is 0-based. Example: To calculate the largest eigenvector/-value set lowindex=highindex=0 . To calculate all the eigenvalues, leave lowindex=highindex=-1 . For legacy reasons this function always returns a square matrix the same size as the source matrix with eigenvectors and a vector the length of the source matrix with eigenvalues. The selected eigenvectors/-values are always in the first highindex - lowindex + 1 rows.
The contents of matrix A is destroyed by the function.
Currently the function is slower than SVD yet less accurate, so if A is known to be positively-defined (for example, it is a covariance matrix)it is recommended to use SVD to find eigenvalues and eigenvectors of A , especially if eigenvectors are not required.
Calculates the exponent of every array element.
Parameters: |
---|
The function calculates the exponent of every element of the input array:
The maximum relative error is about . Currently, the function converts denormalized values to zeros on output.
Calculates the angle of a 2D vector.
Parameters: |
|
---|
The function calculates the full-range angle of an input 2D vector. The angle is measured in degrees and varies from 0 degrees to 360 degrees. The accuracy is about 0.1 degrees.
Flip a 2D array around vertical, horizontal or both axes.
Parameters: |
|
---|
The function flips the array in one of three different ways (row and column indices are 0-based):
The example scenarios of function use are:
Create a CvMat from an object that supports the array interface.
Parameters: |
|
---|
If the object supports the array interface , return a CvMat ( allowND = False ) or CvMatND ( allowND = True ).
If allowND = False , then the object’s array must be either 2D or 3D. If it is 2D, then the returned CvMat has a single channel. If it is 3D, then the returned CvMat will have N channels, where N is the last dimension of the array. In this case, N cannot be greater than OpenCV’s channel limit, CV_CN_MAX .
If allowND = True , then fromarray returns a single-channel CvMatND with the same shape as the original array.
For example, NumPy arrays support the array interface, so can be converted to OpenCV objects:
>>> import cv, numpy
>>> a = numpy.ones((480, 640))
>>> mat = cv.fromarray(a)
>>> print cv.GetDims(mat), cv.CV_MAT_CN(cv.GetElemType(mat))
(480, 640) 1
>>> a = numpy.ones((480, 640, 3))
>>> mat = cv.fromarray(a)
>>> print cv.GetDims(mat), cv.CV_MAT_CN(cv.GetElemType(mat))
(480, 640) 3
>>> a = numpy.ones((480, 640, 3))
>>> mat = cv.fromarray(a, allowND = True)
>>> print cv.GetDims(mat), cv.CV_MAT_CN(cv.GetElemType(mat))
(480, 640, 3) 1
Performs generalized matrix multiplication.
Parameters: |
|
---|
The function performs generalized matrix multiplication:
All the matrices should have the same data type and coordinated sizes. Real or complex floating-point matrices are supported.
Return a specific array element.
Parameters: |
|
---|
Return a specific array element. Array must have dimension 3.
Return a specific array element.
Parameters: |
|
---|
Return a specific array element. Array must have dimension 2.
Return a specific array element.
Parameters: |
|
---|
Return a specific array element. Array must have dimension 3.
Return a specific array element.
Parameters: |
|
---|
Return a specific array element. The length of array indices must be the same as the dimension of the array.
Returns array column.
Parameters: |
---|
The function GetCol returns a single column from the input array.
Returns array column span.
Parameters: |
---|
The function GetCols returns a column span from the input array.
Returns one of array diagonals.
Parameters: |
---|
The function returns the header, corresponding to a specified diagonal of the input array.
The function returns a list of array dimensions. In the case of IplImage or CvMat it always returns a list of length 2.
The function returns type of the array elements as described in CreateMat discussion: CV_8UC1 ... CV_64FC4 .
Returns image header for arbitrary array.
Parameters: |
|
---|
The function returns the image header for the input array that can be a matrix - CvMat , or an image - IplImage* . In the case of an image the function simply returns the input pointer. In the case of CvMat it initializes an imageHeader structure with the parameters of the input matrix. Note that if we transform IplImage to CvMat and then transform CvMat back to IplImage, we can get different headers if the ROI is set, and thus some IPL functions that calculate image stride from its width and align may fail on the resultant image.
Returns the index of the channel of interest.
Parameters: |
|
---|
Returns the channel of interest of in an IplImage. Returned values correspond to the coi in SetImageCOI .
Returns the image ROI.
Parameters: |
|
---|
If there is no ROI set, cvRect(0,0,image->width,image->height) is returned.
Returns matrix header for arbitrary array.
Parameters: |
|
---|
The function returns a matrix header for the input array that can be a matrix -
CvMat , an image - IplImage or a multi-dimensional dense array - CvMatND (latter case is allowed only if allowND != 0 ) . In the case of matrix the function simply returns the input pointer. In the case of IplImage* or CvMatND it initializes the header structure with parameters of the current image ROI and returns the pointer to this temporary structure. Because COI is not supported by CvMat , it is returned separately.
The function provides an easy way to handle both types of arrays - IplImage and CvMat - using the same code. Reverse transform from CvMat to IplImage can be done using the GetImage function.
Input array must have underlying data allocated or attached, otherwise the function fails.
If the input array is IplImage with planar data layout and COI set, the function returns the pointer to the selected plane and COI = 0. It enables per-plane processing of multi-channel images with planar data layout using OpenCV functions.
Returns optimal DFT size for a given vector size.
Parameters: |
|
---|
The function returns the minimum number N that is greater than or equal to size0 , such that the DFT of a vector of size N can be computed fast. In the current implementation , for some , , .
The function returns a negative number if size0 is too large (very close to INT_MAX )
Return a specific element of single-channel 1D array.
Parameters: |
|
---|
Returns a specific element of a single-channel array. If the array has multiple channels, a runtime error is raised. Note that Get function can be used safely for both single-channel and multiple-channel arrays though they are a bit slower.
In the case of a sparse array the functions return 0 if the requested node does not exist (no new node is created by the functions).
Return a specific element of single-channel 2D array.
Parameters: |
|
---|
Returns a specific element of a single-channel array. If the array has multiple channels, a runtime error is raised. Note that Get function can be used safely for both single-channel and multiple-channel arrays though they are a bit slower.
In the case of a sparse array the functions return 0 if the requested node does not exist (no new node is created by the functions).
Return a specific element of single-channel array.
Parameters: |
|
---|
Returns a specific element of a single-channel array. If the array has multiple channels, a runtime error is raised. Note that Get function can be used safely for both single-channel and multiple-channel arrays though they are a bit slower.
In the case of a sparse array the functions return 0 if the requested node does not exist (no new node is created by the functions).
Return a specific element of single-channel array.
Parameters: |
|
---|
Returns a specific element of a single-channel array. If the array has multiple channels, a runtime error is raised. Note that Get function can be used safely for both single-channel and multiple-channel arrays though they are a bit slower.
In the case of a sparse array the functions return 0 if the requested node does not exist (no new node is created by the functions).
Returns array row.
Parameters: |
---|
The function GetRow returns a single row from the input array.
Returns array row span.
Parameters: |
---|
The function GetRows returns a row span from the input array.
The function returns number of rows (CvSize::height) and number of columns (CvSize::width) of the input matrix or image. In the case of image the size of ROI is returned.
Returns matrix header corresponding to the rectangular sub-array of input image or matrix.
Parameters: |
---|
The function returns header, corresponding to a specified rectangle of the input array. In other words, it allows the user to treat a rectangular part of input array as a stand-alone array. ROI is taken into account by the function so the sub-array of ROI is actually extracted.
Checks that array elements lie between the elements of two other arrays.
Parameters: |
---|
The function does the range check for every element of the input array:
For single-channel arrays,
For two-channel arrays and so forth,
dst(I) is set to 0xff (all 1 -bits) if src(I) is within the range and 0 otherwise. All the arrays must have the same type, except the destination, and the same size (or ROI size).
Checks that array elements lie between two scalars.
Parameters: |
---|
The function does the range check for every element of the input array:
For single-channel arrays,
For two-channel arrays nd so forth,
‘dst(I)’ is set to 0xff (all 1 -bits) if ‘src(I)’ is within the range and 0 otherwise. All the arrays must have the same size (or ROI size).
Calculates the inverse square root.
Parameters: |
|
---|
The function calculates the inverse square root of the argument, and normally it is faster than 1./sqrt(value) . If the argument is zero or negative, the result is not determined. Special values ( , NaN) are not handled.
Invert
Finds the inverse or pseudo-inverse of a matrix.
Parameters: |
|
---|
The function inverts matrix src1 and stores the result in src2 .
In the case of LU method, the function returns the src1 determinant (src1 must be square). If it is 0, the matrix is not inverted and src2 is filled with zeros.
In the case of SVD methods, the function returns the inversed condition of src1 (ratio of the smallest singular value to the largest singular value) and 0 if src1 is all zeros. The SVD methods calculate a pseudo-inverse matrix if src1 is singular.
Determines if the argument is Infinity.
Parameters: |
|
---|
The function returns 1 if the argument is (as defined by IEEE754 standard), 0 otherwise.
Determines if the argument is Not A Number.
Parameters: |
|
---|
The function returns 1 if the argument is Not A Number (as defined by IEEE754 standard), 0 otherwise.
Performs a look-up table transform of an array.
Parameters: |
|
---|
The function fills the destination array with values from the look-up table. Indices of the entries are taken from the source array. That is, the function processes each element of src as follows:
where
Calculates the natural logarithm of every array element’s absolute value.
Parameters: |
---|
The function calculates the natural logarithm of the absolute value of every element of the input array:
Where C is a large negative number (about -700 in the current implementation).
Calculates the Mahalanobis distance between two vectors.
Parameters: |
|
---|
The function calculates and returns the weighted distance between two vectors:
The covariance matrix may be calculated using the CalcCovarMatrix function and further inverted using the Invert function (CV _ SVD method is the prefered one because the matrix might be singular).
Finds per-element maximum of two arrays.
Parameters: |
---|
The function calculates per-element maximum of two arrays:
All the arrays must have a single channel, the same data type and the same size (or ROI size).
Finds per-element maximum of array and scalar.
Parameters: |
---|
The function calculates per-element maximum of array and scalar:
All the arrays must have a single channel, the same data type and the same size (or ROI size).
Composes a multi-channel array from several single-channel arrays or inserts a single channel into the array.
Parameters: |
---|
The function is the opposite to Split . If the destination array has N channels then if the first N input channels are not NULL, they all are copied to the destination array; if only a single source channel of the first N is not NULL, this particular channel is copied into the destination array; otherwise an error is raised. The rest of the source channels (beyond the first N) must always be NULL. For IplImage Copy with COI set can be also used to insert a single channel into the image.
Finds per-element minimum of two arrays.
Parameters: |
---|
The function calculates per-element minimum of two arrays:
All the arrays must have a single channel, the same data type and the same size (or ROI size).
Finds global minimum and maximum in array or subarray.
Parameters: |
|
---|
The function finds minimum and maximum element values and their positions. The extremums are searched across the whole array, selected ROI (in the case of IplImage ) or, if mask is not NULL , in the specified array region. If the array has more than one channel, it must be IplImage with COI set. In the case of multi-dimensional arrays, minLoc->x and maxLoc->x will contain raw (linear) positions of the extremums.
Finds per-element minimum of an array and a scalar.
Parameters: |
---|
The function calculates minimum of an array and a scalar:
All the arrays must have a single channel, the same data type and the same size (or ROI size).
Copies several channels from input arrays to certain channels of output arrays
Parameters: |
|
---|
The function is a generalized form of cvSplit and Merge and some forms of CvtColor . It can be used to change the order of the planes, add/remove alpha channel, extract or insert a single plane or multiple planes etc.
As an example, this code splits a 4-channel RGBA image into a 3-channel BGR (i.e. with R and B swapped) and separate alpha channel image:
rgba = cv.CreateMat(100, 100, cv.CV_8UC4)
bgr = cv.CreateMat(100, 100, cv.CV_8UC3)
alpha = cv.CreateMat(100, 100, cv.CV_8UC1)
cv.Set(rgba, (1,2,3,4))
cv.MixChannels([rgba], [bgr, alpha], [
(0, 2), # rgba[0] -> bgr[2]
(1, 1), # rgba[1] -> bgr[1]
(2, 0), # rgba[2] -> bgr[0]
(3, 3) # rgba[3] -> alpha[0]
])
Calculates the per-element product of two arrays.
Parameters: |
---|
The function calculates the per-element product of two arrays:
All the arrays must have the same type and the same size (or ROI size). For types that have limited range this operation is saturating.
Performs per-element multiplication of two Fourier spectrums.
Parameters: |
|
---|
The function performs 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 , may be used to calculate convolution of two arrays rapidly.
Calculates the product of an array and a transposed array.
Parameters: |
---|
The function calculates the product of src and its transposition:
if , and
otherwise.
Calculates absolute array norm, absolute difference norm, or relative difference norm.
Parameters: |
---|
The function calculates the absolute norm of arr1 if arr2 is NULL:
or the absolute difference norm if arr2 is not NULL:
or the relative difference norm if arr2 is not NULL and (normType & CV_RELATIVE) != 0 :
The function returns the calculated norm. A multiple-channel array is treated as a single-channel, that is, the results for all channels are combined.
Performs per-element bit-wise inversion of array elements.
Parameters: |
---|
The function Not inverses every bit of every array element:
dst(I)=~src(I)
Calculates per-element bit-wise disjunction of two arrays.
Parameters: |
---|
The function calculates per-element bit-wise disjunction of two arrays:
dst(I)=src1(I)|src2(I)
In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size.
Calculates a per-element bit-wise disjunction of an array and a scalar.
Parameters: |
---|
The function OrS calculates per-element bit-wise disjunction of an array and a scalar:
dst(I)=src(I)|value if mask(I)!=0
Prior to the actual operation, the scalar is converted to the same type as that of the array(s). In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size.
Performs perspective matrix transformation of a vector array.
Parameters: |
---|
The function transforms every element of src (by treating it as 2D or 3D vector) in the following way:
where
and
Calculates Cartesian coordinates of 2d vectors represented in polar form.
Parameters: |
|
---|
The function calculates either the x-coodinate, y-coordinate or both of every vector magnitude(I)*exp(angle(I)*j), j=sqrt(-1) :
x(I)=magnitude(I)*cos(angle(I)),
y(I)=magnitude(I)*sin(angle(I))
Raises every array element to a power.
Parameters: |
---|
The function raises every element of the input array to p :
That is, for a non-integer power exponent the absolute values of input array elements are used. However, it is possible to get true values for negative values using some extra operations, as the following example, computing the cube root of array elements, shows:
>>> import cv
>>> src = cv.CreateMat(1, 10, cv.CV_32FC1)
>>> mask = cv.CreateMat(src.rows, src.cols, cv.CV_8UC1)
>>> dst = cv.CreateMat(src.rows, src.cols, cv.CV_32FC1)
>>> cv.CmpS(src, 0, mask, cv.CV_CMP_LT) # find negative elements
>>> cv.Pow(src, dst, 1. / 3)
>>> cv.SubRS(dst, cv.ScalarAll(0), dst, mask) # negate the results of negative inputs
For some values of power , such as integer values, 0.5, and -0.5, specialized faster algorithms are used.
Initializes a random number generator state.
Parameters: |
|
---|
The function initializes a random number generator and returns the state. The pointer to the state can be then passed to the RandInt , RandReal and RandArr functions. In the current implementation a multiply-with-carry generator is used.
Fills an array with random numbers and updates the RNG state.
Parameters: |
|
---|
The function fills the destination array with uniformly or normally distributed random numbers.
Returns a 32-bit unsigned integer and updates RNG.
Parameters: |
|
---|
The function returns a uniformly-distributed random 32-bit unsigned integer and updates the RNG state. It is similar to the rand() function from the C runtime library, but it always generates a 32-bit number whereas rand() returns a number in between 0 and RAND_MAX which is or , depending on the platform.
The function is useful for generating scalar random numbers, such as points, patch sizes, table indices, etc., where integer numbers of a certain range can be generated using a modulo operation and floating-point numbers can be generated by scaling from 0 to 1 or any other specific range.
Returns a floating-point random number and updates RNG.
Parameters: |
|
---|
The function returns a uniformly-distributed random floating-point number between 0 and 1 (1 is not included).
Reduces a matrix to a vector.
Parameters: |
|
---|
The function reduces 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 an raster image. In the case of CV_REDUCE_SUM and CV_REDUCE_AVG the output may have a larger element bit-depth to preserve accuracy. And multi-channel arrays are also supported in these two reduction modes.
Fill the destination array with repeated copies of the source array.
Parameters: |
---|
The function fills the destination array with repeated copies of the source array:
dst(i,j)=src(i mod rows(src), j mod cols(src))
So the destination array may be as larger as well as smaller than the source array.
Resets the image ROI to include the entire image and releases the ROI structure.
Parameters: |
|
---|
This produces a similar result to the following
cv.SetImageROI(image, (0, 0, image.width, image.height))
cv.SetImageCOI(image, 0)
Changes shape of matrix/image without copying data.
Parameters: |
|
---|
The function initializes the CvMat header so that it points to the same data as the original array but has a different shape - different number of channels, different number of rows, or both.
Changes the shape of a multi-dimensional array without copying the data.
Parameters: |
|
---|
Returns a new CvMatND that shares the same data as arr but has different dimensions or number of channels. The only requirement is that the total length of the data is unchanged.
>>> import cv
>>> mat = cv.CreateMatND([24], cv.CV_32FC1)
>>> print cv.GetDims(cv.ReshapeMatND(mat, 0, [8, 3]))
(8, 3)
>>> m2 = cv.ReshapeMatND(mat, 4, [3, 2])
>>> print cv.GetDims(m2)
(3, 2)
>>> print m2.channels
4
Converts a floating-point number to the nearest integer value.
Parameters: |
|
---|
On some architectures this function is much faster than the standard cast operations. If the absolute value of the argument is greater than , the result is not determined. Special values ( , NaN) are not handled.
Converts a floating-point number to the nearest integer value that is not larger than the argument.
Parameters: |
|
---|
On some architectures this function is much faster than the standard cast operations. If the absolute value of the argument is greater than , the result is not determined. Special values ( , NaN) are not handled.
Converts a floating-point number to the nearest integer value that is not smaller than the argument.
Parameters: |
|
---|
On some architectures this function is much faster than the standard cast operations. If the absolute value of the argument is greater than , the result is not determined. Special values ( , NaN) are not handled.
Calculates the sum of a scaled array and another array.
Parameters: |
---|
The function calculates the sum of a scaled array and another array:
All array parameters should have the same type and the same size.
Sets every element of an array to a given value.
Parameters: |
---|
The function copies the scalar value to every selected element of the destination array:
If array arr is of IplImage type, then is ROI used, but COI must not be set.
Set a specific array element.
Parameters: |
---|
Sets a specific array element. Array must have dimension 1.
Set a specific array element.
Parameters: |
---|
Sets a specific array element. Array must have dimension 2.
Set a specific array element.
Parameters: |
---|
Sets a specific array element. Array must have dimension 3.
Set a specific array element.
Parameters: |
---|
Sets a specific array element. The length of array indices must be the same as the dimension of the array.
Assigns user data to the array header.
Parameters: |
|
---|
The function assigns user data to the array header. Header should be initialized before using cvCreate*Header , cvInit*Header or Mat (in the case of matrix) function.
Initializes a scaled identity matrix.
Parameters: |
---|
The function initializes a scaled identity matrix:
Sets the channel of interest in an IplImage.
Parameters: |
|
---|
If the ROI is set to NULL and the coi is not 0, the ROI is allocated. Most OpenCV functions do not support the COI setting, so to process an individual image/matrix channel one may copy (via Copy or Split ) the channel to a separate image/matrix, process it and then copy the result back (via Copy or Merge ) if needed.
Sets an image Region Of Interest (ROI) for a given rectangle.
Parameters: |
---|
If the original image ROI was NULL and the rect is not the whole image, the ROI structure is allocated.
Most OpenCV functions support the use of ROI and treat the image rectangle as a separate image. For example, all of the pixel coordinates are counted from the top-left (or bottom-left) corner of the ROI, not the original image.
Set a specific array element.
Parameters: |
|
---|
Sets a specific array element. Array must have dimension 1.
Set a specific array element.
Parameters: |
|
---|
Sets a specific array element. Array must have dimension 2.
Set a specific array element.
Parameters: |
|
---|
Sets a specific array element. Array must have dimension 3.
Set a specific array element.
Parameters: |
|
---|
Sets a specific array element. The length of array indices must be the same as the dimension of the array.
The function clears the array. In the case of dense arrays (CvMat, CvMatND or IplImage), cvZero(array) is equivalent to cvSet(array,cvScalarAll(0),0). In the case of sparse arrays all the elements are removed.
Solves a linear system or least-squares problem.
Parameters: |
|
---|
The function solves a linear system or least-squares problem (the latter is possible with SVD methods):
If CV_LU method is used, the function returns 1 if src1 is non-singular and 0 otherwise; in the latter case dst is not valid.
Finds the real roots of a cubic equation.
Parameters: |
---|
The function finds the real roots of a cubic equation:
If coeffs is a 4-element vector:
or if coeffs is 3-element vector:
The function returns the number of real roots found. The roots are stored to root array, which is padded with zeros if there is only one root.
Divides multi-channel array into several single-channel arrays or extracts a single channel from the array.
Parameters: |
---|
The function divides a multi-channel array into separate single-channel arrays. Two modes are available for the operation. If the source array has N channels then if the first N destination channels are not NULL, they all are extracted from the source array; if only a single destination channel of the first N is not NULL, this particular channel is extracted; otherwise an error is raised. The rest of the destination channels (beyond the first N) must always be NULL. For IplImage Copy with COI set can be also used to extract a single channel from the image.
Calculates the square root.
Parameters: |
|
---|
The function calculates the square root of the argument. If the argument is negative, the result is not determined.
Computes the per-element difference between two arrays.
Parameters: |
---|
The function subtracts one array from another one:
dst(I)=src1(I)-src2(I) if mask(I)!=0
All the arrays must have the same type, except the mask, and the same size (or ROI size). For types that have limited range this operation is saturating.
Computes the difference between a scalar and an array.
Parameters: |
---|
The function subtracts every element of source array from a scalar:
dst(I)=value-src(I) if mask(I)!=0
All the arrays must have the same type, except the mask, and the same size (or ROI size). For types that have limited range this operation is saturating.
Computes the difference between an array and a scalar.
Parameters: |
---|
The function subtracts a scalar from every element of the source array:
dst(I)=src(I)-value if mask(I)!=0
All the arrays must have the same type, except the mask, and the same size (or ROI size). For types that have limited range this operation is saturating.
The function calculates the sum S of array elements, independently for each channel:
If the array is IplImage and COI is set, the function processes the selected channel only and stores the sum to the first scalar component.
Performs singular value back substitution.
Parameters: |
|
---|
The function calculates back substitution for decomposed matrix A (see SVD description) and matrix B :
where
and is a small number that depends on the matrix data type.
This function together with SVD is used inside Invert and Solve , and the possible reason to use these (svd and bksb) “low-level” function, is to avoid allocation of temporary matrices inside the high-level counterparts (inv and solve).
Performs singular value decomposition of a real floating-point matrix.
Parameters: |
|
---|
The function decomposes matrix A into the product of a diagonal matrix and two
orthogonal matrices:
where is a diagonal matrix of singular values that can be coded as a 1D vector of singular values and and . All the singular values are non-negative and sorted (together with and columns) in descending order.
An SVD algorithm is numerically robust and its typical applications include:
accurate eigenvalue problem solution when matrix A is a square, symmetric, and positively defined matrix, for example, when
it is a covariance matrix.
in this case will be a vector/matrix
of the eigenvalues, and
will be a matrix of the eigenvectors.
accurate solution of a poor-conditioned linear system.
least-squares solution of an overdetermined linear system. This and the preceeding is done by using the Solve function with the CV_SVD method.
accurate calculation of different matrix characteristics such as the matrix rank (the number of non-zero singular values), condition number (ratio of the largest singular value to the smallest one), and determinant (absolute value of the determinant is equal to the product of singular values).
Performs matrix transformation of every array element.
Parameters: |
---|
The function performs matrix transformation of every element of array src and stores the results in dst :
That is, every element of an N -channel array src is considered as an N -element vector which is transformed using a matrix transmat and shift vector shiftvec into an element of M -channel array dst . There is an option to embedd shiftvec into transmat . In this case transmat should be a matrix and the rightmost column is treated as the shift vector.
Both source and destination arrays should have the same depth and the same size or selected ROI size. transmat and shiftvec should be real floating-point matrices.
The function may be used for geometrical transformation of n dimensional point set, arbitrary linear color space transformation, shuffling the channels and so forth.
Transposes a matrix.
Parameters: |
---|
The function transposes matrix src1 :
Note that no complex conjugation is done in the case of a complex matrix. Conjugation should be done separately: look at the sample code in XorS for an example.
Performs per-element bit-wise “exclusive or” operation on two arrays.
Parameters: |
---|
The function calculates per-element bit-wise logical conjunction of two arrays:
dst(I)=src1(I)^src2(I) if mask(I)!=0
In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size.
Performs per-element bit-wise “exclusive or” operation on an array and a scalar.
Parameters: |
---|
The function XorS calculates per-element bit-wise conjunction of an array and a scalar:
dst(I)=src(I)^value if mask(I)!=0
Prior to the actual operation, the scalar is converted to the same type as that of the array(s). In the case of floating-point arrays their bit representations are used for the operation. All the arrays must have the same type, except the mask, and the same size
Returns the particular element of single-channel floating-point matrix.
Parameters: |
|
---|
The function is a fast replacement for GetReal2D in the case of single-channel floating-point matrices. It is faster because it is inline, it does fewer checks for array type and array element type, and it checks for the row and column ranges only in debug mode.
Returns a specific element of a single-channel floating-point matrix.
Parameters: |
|
---|
The function is a fast replacement for SetReal2D in the case of single-channel floating-point matrices. It is faster because it is inline, it does fewer checks for array type and array element type, and it checks for the row and column ranges only in debug mode.