CvInvokeCvErrorCallback Delegate |
http://www.emgu.com
Define an error callback that can be registered using cvRedirectError function
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic delegate int CvErrorCallback(
int status,
IntPtr funcName,
IntPtr errMsg,
IntPtr fileName,
int line,
IntPtr userData
)
Public Delegate Function CvErrorCallback (
status As Integer,
funcName As IntPtr,
errMsg As IntPtr,
fileName As IntPtr,
line As Integer,
userData As IntPtr
) As Integer
public delegate int CvErrorCallback(
int status,
IntPtr funcName,
IntPtr errMsg,
IntPtr fileName,
int line,
IntPtr userData
)
type CvErrorCallback =
delegate of
status : int *
funcName : IntPtr *
errMsg : IntPtr *
fileName : IntPtr *
line : int *
userData : IntPtr -> int
Parameters
- status
- Type: SystemInt32
The numeric code for error status - funcName
- Type: SystemIntPtr
The source file name where error is encountered - errMsg
- Type: SystemIntPtr
A description of the error - fileName
- Type: SystemIntPtr
The source file name where error is encountered - line
- Type: SystemInt32
The line number in the source where error is encountered - userData
- Type: SystemIntPtr
Arbitrary pointer that is transparently passed to the error handler.
Return Value
Type:
Int32
See Also