CvInvokeSetErrStatus Method |
http://www.emgu.com
Sets the error status to the specified value. Mostly, the function is used to reset the error status (set to it CV_StsOk) to recover after error. In other cases it is more natural to call cvError or CV_ERROR.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void SetErrStatus(
ErrorCodes code
)
Public Shared Sub SetErrStatus (
code As ErrorCodes
)
public:
static void SetErrStatus(
ErrorCodes code
)
static member SetErrStatus :
code : ErrorCodes -> unit
Parameters
- code
- Type: Emgu.CV.CvEnumErrorCodes
The error status.
See Also