C# Class Emgu.CV.Util.VectorOfFloat

Wraped class of the C++ standard vector of float.
Inheritance: Emgu.Util.UnmanagedObject
Afficher le fichier Open project: fajoy/RTSPExample Class Usage Examples

Méthodes publiques

Méthode Description
Clear ( ) : void

Clear the vector

Push ( float value ) : void

Push an array of value into the standard vector

ToArray ( ) : float[]

Convert the standard vector to an array of float

VectorOfFloat ( ) : System

Create an empty standard vector of float

VectorOfFloat ( int size ) : System

Create an standard vector of float of the specific size

Méthodes protégées

Méthode Description
DisposeObject ( ) : void

Release the standard vector

Method Details

Clear() public méthode

Clear the vector
public Clear ( ) : void
Résultat void

DisposeObject() protected méthode

Release the standard vector
protected DisposeObject ( ) : void
Résultat void

Push() public méthode

Push an array of value into the standard vector
public Push ( float value ) : void
value float The value to be pushed to the vector
Résultat void

ToArray() public méthode

Convert the standard vector to an array of float
public ToArray ( ) : float[]
Résultat float[]

VectorOfFloat() public méthode

Create an empty standard vector of float
public VectorOfFloat ( ) : System
Résultat System

VectorOfFloat() public méthode

Create an standard vector of float of the specific size
public VectorOfFloat ( int size ) : System
size int The size of the vector
Résultat System