dlib使用时Error处理

dlib安装后,在使用时会碰到下面的错误:

USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent

_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives

解决方案如下:

1、找到threads文件夹下的threads_kernel_shared.h文件;

2、注释掉下面的代码:

//#ifdef ENABLE_ASSERTS  
//    extern int USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives;  
//    inline int dlib_check_consistent_assert_usage() { USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives = 0; return 0; }  
//#else  
//    extern int USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives_;  
//    inline int dlib_check_consistent_assert_usage() { USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives_ = 0; return 0; }  
//#endif  
//    const int dlib_check_assert_helper_variable = dlib_check_consistent_assert_usage();  

你可能感兴趣的:(计算机视觉,dlib)