在Ubuntu上配置OpenCV环境参考:1.7在Ubuntu上配置OpenCV环境_ubuntu qt opencv-CSDN博客
用make进行编译出现中断报错:error: ‘sleep_for’ is not a member of ‘std::this_thread’
细解:报错指出在 gapi_async_test.cpp 文件,尝试使用std::this_thread::sleep_for 函数,但是编译器无法找到这个函数。
解决方法:找到.. / opencv / modules / gapi / test /路径下找到gapi_async_test.cpp
在文件中添加#include <thread>头文件,并保存重新make