Click or drag to resize

Tensor Constructor

https://www.emgu.com
Create a Tensor from the native tensorflow lite tensor pointer

Namespace:  Emgu.TF.Lite
Assembly:  Emgu.TF.Lite.Netstandard (in Emgu.TF.Lite.Netstandard.dll) Version: 2.8.0.1418
Syntax
public Tensor(
	IntPtr ptr,
	bool needDispose
)

Parameters

ptr
Type: SystemIntPtr
A native tensorflow lite tensor pointer
needDispose
Type: SystemBoolean
If true, we need to dispose the tensor upon object disposal. If false, we assume the tensor will be freed by the parent object.
See Also