The CvArray<(Of <(TDepth>)>) type exposes the following members.

Constructors

  NameDescription
CvArray<(Of <(TDepth>)>)
Initializes a new instance of the CvArray<(Of <(TDepth>)>) class

Methods

  NameDescription
_And
Inplace And operation with src2
_MaxOverloaded.
_MinOverloaded.
_MulOverloaded.
_Not
Inplace compute the complement for all array elements
_Or
Inplace Or operation with src2
AllocateData
Allocate data for the array
CopyTo
Copy the current array to dest
DeserializeObjectData
A function used for runtime deserailization of the object
Dispose
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
DisposeObject
Free the _dataHandle if it is set
(Overrides DisposableObject..::.DisposeObject()()().)
DotProduct
Calculates and returns the Euclidean dot product of two arrays. src1 dot src2 = sumI(src1(I)*src2(I))
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize
Destructor
(Inherited from DisposableObject.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetObjectData
A function used for runtime serilization of the object
GetSchema
Get the xml schema
GetType
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
ReadXml
Function to call when deserializing this object from XML
Reduce<(Of <(TOtherDepth>)>)
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.
ReleaseManagedResources
Release the managed resouces. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
Save
Save the CvArray as image
SetIdentityOverloaded.
SetRandNormalOverloaded.
SetRandUniformOverloaded.
SetValueOverloaded.
SetZero
Set the values to zero
ToString
Returns a String that represents the current Object.
(Inherited from Object.)
WriteXml
Function to call when serializing this object to XML

Fields

  NameDescription
_dataHandle
The pinned GCHandle to _array;
_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
_sizeOfElement
The size of the elements in the CvArray

Properties

  NameDescription
Bytes
Get or Set an Array of bytes that represent the data in this array
Cols
The number of cols for this array
Height
Get the height (#Rows) of the cvArray. If ROI is set, the height of the ROI
ManagedArray
Get the underneath managed array
Norm
The norm of this Array
NumberOfChannels
Get the number of channels of the array
Ptr
The pointer to the internal structure
Rows
The number of rows for this array
SerializationCompressionRatio
Get or set the Compression Ratio for serialization. A number between 0 - 9. 0 means no compression at all, while 9 means best compression
Size
Get the size of the array
Trace
Sum of diagonal elements of the matrix
Width
Get the width (#Cols) of the cvArray. If ROI is set, the width of the ROI

See Also