C# Class Emgu.CV.Util.VectorOfByte

Wraped class of the C++ standard vector of Byte.
Inheritance: Emgu.Util.UnmanagedObject
Exibir arquivo Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
Clear ( ) : void

Clear the vector

Push ( float value ) : void

Push an array of value into the standard vector

ToArray ( ) : Byte[]

Convert the standard vector to an array of Byte

VectorOfByte ( ) : System

Create an empty standard vector of Byte

VectorOfByte ( int size ) : System

Create an standard vector of Byte of the specific size

Protected Methods

Method Description
DisposeObject ( ) : void

Release the standard vector

Method Details

Clear() public method

Clear the vector
public Clear ( ) : void
return void

DisposeObject() protected method

Release the standard vector
protected DisposeObject ( ) : void
return void

Push() public method

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

ToArray() public method

Convert the standard vector to an array of Byte
public ToArray ( ) : Byte[]
return Byte[]

VectorOfByte() public method

Create an empty standard vector of Byte
public VectorOfByte ( ) : System
return System

VectorOfByte() public method

Create an standard vector of Byte of the specific size
public VectorOfByte ( int size ) : System
size int The size of the vector
return System