TfLiteInvokeTfliteErrorCallback Delegate |
http://www.emgu.com
Define the functional interface for the error callback
Namespace:
Emgu.TF.Lite
Assembly:
Emgu.TF.Lite.Net45 (in Emgu.TF.Lite.Net45.dll) Version: 1.14.0.572 (1.14.0.572)
Syntaxpublic delegate int TfliteErrorCallback(
int status,
IntPtr errMsg
)
Public Delegate Function TfliteErrorCallback (
status As Integer,
errMsg As IntPtr
) As Integer
public delegate int TfliteErrorCallback(
int status,
IntPtr errMsg
)
type TfliteErrorCallback =
delegate of
status : int *
errMsg : IntPtr -> int
Parameters
- status
- Type: SystemInt32
The status code - errMsg
- Type: SystemIntPtr
The pointer to the error message
Return Value
Type:
Int32
See Also