http://www.emgu.com
Convert a byte array to a Tensor
Namespace:
Emgu.TF
Assembly:
Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.2.0.932
Syntaxpublic static Tensor FromString(
byte[] value,
Status status = null
)
Public Shared Function FromString (
value As Byte(),
Optional status As Status = Nothing
) As Tensor
public:
static Tensor^ FromString(
array<unsigned char>^ value,
Status^ status = nullptr
)
static member FromString :
value : byte[] *
?status : Status
(* Defaults:
let _status = defaultArg status null
*)
-> Tensor
Parameters
- value
- Type: SystemByte
The byte array - status (Optional)
- Type: Emgu.TFStatus
Optional status
Return Value
Type:
TensorThe tensor
See Also