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.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public 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