https://www.emgu.com
Get a copy of the tensor data as a managed array
Namespace:
Emgu.TF.Lite
Assembly:
Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic Array GetData(
bool jagged = true
)
Public Function GetData (
Optional jagged As Boolean = true
) As Array
public:
Array^ GetData(
bool jagged = true
)
member GetData :
?jagged : bool
(* Defaults:
let _jagged = defaultArg jagged true
*)
-> Array
Parameters
- jagged (Optional)
- Type: SystemBoolean
If true, return the data as a jagged array. Otherwise, return a single dimension array.
Return Value
Type:
ArrayA copy of the tensor data as a managed array
See Also