Skip to content
David Millán Escrivá edited this page Mar 9, 2014 · 20 revisions

NODES

Array

Function Status Description
Copy Finished Copies one array to another with mask
Add Finished Calculates the per-element sum of two arrays.
And Finished Calculates the per-element bit-wise conjunction of two arrays
Mult Finished Calculates the per-element scaled product of two arrays.
Div Finished Performs per-element division of two arrays or a scalar by an array.
Not InProgress Inverts every bit of an array
Or Finished Calculates the per-element bit-wise disjunction of two arrays
Sub Finished Calculates the per-element difference between two arrays
XOr Finished Calculates the per-element bit-wise “exclusive or” operation on two arrays
AbsDiff ToDo Calculates the per-element absolute difference between two arrays or between an array and a scalar.
addWeighted ToDo Calculates the weighted sum of two arrays.
calcCovarMatrix ToDo Calculates the covariance matrix of a set of vectors.
cartToPolar ToDo Calculates the magnitude and angle of 2D vectors.
compare ToDo Performs the per-element comparison of two arrays or an array and scalar value.
convertScaleAbs ToDo Scales, calculates absolute values, and converts the result to 8-bit.
countNonZero ToDo Counts non-zero array elements
dct ToDo Performs a forward or inverse discrete Cosine transform of 1D or 2D array.
dft ToDo Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array.
determinant ToDo Returns the determinant of a square floating-point matrix.
eigen ToDo Calculates eigenvalues and eigenvectors of a symmetric matrix
exp ToDo Calculates the exponent of every array element
flip ToDo Flips a 2D array around vertical, horizontal, or both axes.
gemm ToDo Performs generalized matrix multiplication.
invert ToDo Finds the inverse or pseudo-inverse of a matrix.
log ToDo Calculates the natural logarithm of every array element.
LUT ToDo Performs a look-up table transform of an array.
Mahalanobis ToDo Calculates the Mahalanobis distance between two vectors.
max ToDo Calculates per-element maximum of two arrays or an array and a scalar
mean ToDo Calculates an average (mean) of array elements
meanStdDev ToDo Calculates a mean and standard deviation of array elements
merge ToDo Creates one multichannel array out of several single-channel ones
min ToDo Calculates per-element minimum of two arrays or an array and a scalar
minMaxIdx ToDo Finds the global minimum and maximum in an array
minMaxLoc ToDo Finds the global minimum and maximum in an array.
mulSpectrums ToDo Performs the per-element multiplication of two Fourier spectrums.
mulTransposed ToDo Calculates the product of a matrix and its transposition
norm ToDo Calculates an absolute array norm, an absolute difference norm, or a relative difference norm.
perspectiveTransform ToDo Performs the perspective matrix transformation of vectors.
polarToCart ToDo Calculates x and y coordinates of 2D vectors from their magnitude and angle
pow ToDo Raises every array element to a power.
reduce ToDo Reduces a matrix to a vector.
repeat ToDo Fills the output array with repeated copies of the input array.
scaleAdd ToDo Calculates the sum of a scaled array and another array.
setIdentity ToDo Initializes a scaled identity matrix.
solve ToDo Solves one or more linear systems or least-squares problems.
solveCubic ToDo Finds the real roots of a cubic equation.
split ToDo Divides a multi-channel array into several single-channel arrays.
sqrt ToDo Calculates a square root of array elements
sum ToDo Calculates the sum of array elements.
trace ToDo Returns the trace of a matrix.
transform ToDo Performs the matrix transformation of every array element
transpose ToDo Transposes a matrix.

More information about this functions in OpenCV Docs (http://docs.opencv.org/modules/core/doc/operations_on_arrays.html)

Image Processing

Function Status Description
Canny Finished
Convert Color Finished
Dilate Finished
Erode Finished
Harris InProgress
Laplace InProgress
Negative InProgress
Resize InProgress
Smooth InProgress
Sobel InProgress
Threshold Finished
Structuring element Finished

Util Nodes no OpenCV

Function Status Description
Loop group Finished Loop iteration
Clone this wiki locally