ErrMode Enumeration OpenCvSharp Class Library
Error mode

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum ErrMode
Members

  Member nameValueDescription
CV_ErrModeLeaf0 The program is terminated after error handler is called. This is the default value. It is useful for debugging, as the error is signalled immediately after it occurs. However, for production systems other two methods may be preferable as they provide more control. [CV_ErrModeLeaf]
CV_ErrModeParent1 The program is not terminated, but the error handler is called. The stack is unwinded (it is done w/o using C++ exception mechanism). User may check error code after calling Cxcore function with cvGetErrStatus and react. [CV_ErrModeParent]
CV_ErrModeSilent2 Similar to Parent mode, but no error handler is called. [CV_ErrModeSilent]
See Also

Reference