| ToolboxToBytesTData Method |
http://www.emgu.com
Convert some generic vector to vector of Bytes
Namespace: Emgu.UtilAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic static byte[] ToBytes<TData>(
TData[] data
)
Public Shared Function ToBytes(Of TData) (
data As TData()
) As Byte()
public:
generic<typename TData>
static array<unsigned char>^ ToBytes(
array<TData>^ data
)
static member ToBytes :
data : 'TData[] -> byte[]
Parameters
- data
- Type: TData
array of data
Type Parameters
- TData
- type of the input vector
Return Value
Type:
Bytethe byte vector
See Also