http://www.emgu.com
The default exception to be thrown when error is encountered in Open CV
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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