Click or drag to resize
CvInvokeCvErrorCallback Delegate
http://www.emgu.com
Define an error callback that can be registered using cvRedirectError function

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public delegate int CvErrorCallback(
	int status,
	IntPtr funcName,
	IntPtr errMsg,
	IntPtr fileName,
	int line,
	IntPtr userData
)

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