Back to Adaptive Vision Library Lite website

You are here: Start » Basic

Basic

Box

Icon Name Description / Applications
BoxCenter

Returns center of a box.

BoxCharacteristicPoint

Returns a characteristic point (e.g. the top-left) of a box.

BoxCharacteristicPoints

Computes the characteristic points of the box.

BoxesBoundingBox

Computes the bounding box of given boxes.

BoxesBoundingBox_OrNil

Computes the bounding box of given boxes; returns NIL if the array is empty.

BoxIntersection

Computes the common part of two boxes.

BoxToBoxDistance

Computes minimal distance between one of the points of the first box with one of the points of the second box.

CreateBox

Creates a box.

DilateBox

Performs a morphological dilation on a box using box kernel.

ErodeBox

Performs a morphological erosion on a box using box kernel.

RemoveEmptyBoxes

The input boxes which have both dimensions different from zero are copied to the output.


Secures against domain errors caused by empty boxes.

ResizeBox

Changes the dimensions of a box.

ResizeBox_Delta

Changes the dimensions of a box by adding some values.

ResizeBox_Relative

Resizes a box to relatively defined dimensions.

SkipEmptyBox

If the input box has both dimensions different from zero, then it is copied to the output; otherwise Nil is returned.


Secures against domain errors caused by empty boxes.

SplitBox

Splits a box into two along a direction.

TestBoxEmpty

Tests whether the box is empty.

TestBoxEqualTo

Tests whether given boxes are equal.

TestBoxInBox

Tests whether a box is contained in another one.

TestBoxIntersectsWith

Tests whether two boxes have non-empty intersection.

TestBoxNotEmpty

Tests whether the box is not empty.

TranslateBox

Shifts a box by a discreet vector.

Format

Icon Name Description / Applications
FormatLocationToString

Converts a location to a string of format "(X, Y)".

FormatPoint2DToString

Converts a 2D point to a string of format "(X, Y)".

FormatPoint3DToString

Converts a 3D point to a string of format "(X, Y, Z)".

Location

Icon Name Description / Applications
LocationCenter

Returns the center point of a pixel indicated by the provided location.

TranslateLocation

Shifts a Location by a given number of pixels along each axis.

Matrix

Icon Name Description / Applications
AccessMatrix

Returns matrix dimensions and its elements row-by-row as a real array.

AddMatrices

Adds two matrices element by element.

CombineMatrices

Combines two matrices horizontally.

ConcatenateMatrices

Combines two matrices horizontally.

CreateIdentityMatrix

Creates a square matrix with ones on the main diagonal, and zeros elsewhere.

CreateUniformMatrix

Creates a matrix with the specified dimensions and filled with a uniform element value.

GetMatrixColumn

Gets the values from a single column of a matrix.

GetMatrixElement

Gets the value of a single element of a matrix.

GetMatrixRow

Gets the values from a single row of a matrix.

InvertMatrix

Finds the inverse of a square matrix.

LoadMatrix

Loads a serialized Matrix object from an AVDATA file.

MakeMatrix

Creates a matrix of specified dimensions with initial elements given row-by-row.

MatrixToRealArrayArray

Converts a matrix to an array of its rows.

MultiplyMatrices

Multiplies two matrices element by element.

MultiplyMatrixByReal

Multiplies all elements of a matrix by a value.

SaveMatrix

Saves a serialized Matrix object as AVDATA file.

SetMatrixColumn

Sets elements of a matrix column.

SetMatrixElement

Sets a single element of a matrix.

SetMatrixRow

Sets elements of a matrix row.

SkipEmptyMatrix

If the input matrix dimensions are non-zero, then the matrix is copied to the output; otherwise Nil value is returned.


Secures against domain errors caused by empty matrices.

StackMatrices

Combines two matrices vertically.

SubtractMatrices

Subtracts two matrices element by element.

TransposeMatrix

Swaps rows with columns in a matrix.

Statistics

Icon Name Description / Applications
AccessLinearFunction

Returns coefficients of a linear function.

Average

Computes the average of an array of real numbers. The array must be not empty.

MakeLinearFunction

Creates a linear function with given coefficients.

Median

Computes the median of an array of real numbers. The array must be not empty. Optional weights, when supplied, must be positive.

Median_InPlace

Computes the median of an array of real numbers. Modifies the input array for the purpose of speed.

NthValue

Computes n-th smallest value in an array (0-indexed). The array must be not empty.

PearsonCorrelation

Computes Pearson product-moment correlation coefficient. The array must be not empty.

Quantile

Computes the specified quantile of an array of real numbers. The array must be not empty.

StandardDeviation

Computes the standard deviation of an array of real numbers. The array must be not empty.

Variance

Computes the variance of an array of real numbers. The array must be not empty.