Error mode
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
CV_ErrModeLeaf | 0 | 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_ErrModeParent | 1 | 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_ErrModeSilent | 2 | Similar to Parent mode, but no error handler is called. [CV_ErrModeSilent] |
See Also