http://www.emgu.com
Convert some generic vector to vector of Bytes
Namespace: Emgu.UtilAssembly: Emgu.Util (in Emgu.Util.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static byte[] ToBytes<D>(
D[] data
)
|
Visual Basic |
---|
Public Shared Function ToBytes(Of D) ( _
data As D() _
) As Byte() |
Visual C++ |
---|
public:
generic<typename D>
static array<unsigned char>^ ToBytes(
array<D>^ data
) |
Parameters
- data
- Type: array<D>[]()[][]
array of data
Type Parameters
- D
- type of the input vector
Return Value
the byte vector
See Also