http://www.emgu.com
The default exception to be thrown when error is encountered in Open CV
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic CvException(
int status,
string funcName,
string errMsg,
string fileName,
int line
)
Public Sub New (
status As Integer,
funcName As String,
errMsg As String,
fileName As String,
line As Integer
)
public:
CvException(
int status,
String^ funcName,
String^ errMsg,
String^ fileName,
int line
)
new :
status : int *
funcName : string *
errMsg : string *
fileName : string *
line : int -> CvException
Parameters
- status
- Type: SystemInt32
The numeric code for error status - funcName
- Type: SystemString
The source file name where error is encountered - errMsg
- Type: SystemString
A description of the error - fileName
- Type: SystemString
The source file name where error is encountered - line
- Type: SystemInt32
The line number in the souce where error is encountered
See Also