nim_duilib/examples/contour/blob/BlobLibraryConfiguration.h
2025-03-16 16:42:44 +08:00

29 lines
884 B
C

/************************************************************************
BlobLibraryConfiguration.h
FUNCTIONALITY: Global configuration of the library
AUTHOR: Inspecta S.L.
MODIFICATIONS (Modification, Author, Date):
**************************************************************************/
//! Indicates whether the MatrixCV is to be used or not
//! Use/Not use the MatrixCV class
//#define MATRIXCV_ACTIU
//! Uses/not use the blob object factory
//#define BLOB_OBJECT_FACTORY
//! Show/not show blob access errors
//#define _SHOW_ERRORS
#ifndef EXCEPTION_READ_FAULT
#define EXCEPTION_READ_FAULT 0 // Access violation was caused by a read
#endif
#ifndef EXCEPTION_WRITE_FAULT
#define EXCEPTION_WRITE_FAULT 1 // Access violation was caused by a read
#endif
#ifndef EXCEPTION_EXECUTE_FAULT
#define EXCEPTION_EXECUTE_FAULT 8 // Access violation was caused by a read
#endif