processing annotations of CULane:fatal error: opencv2\highgui.hpp: No such file or directory

#项目地址:

https://github.com/XingangPan/seg_label_generate

#编译错误:

fatal error: opencv2\highgui.hpp: No such file or directory

#原因:
因为opencv2和opencv3文件目录不同造成。
#解决:
1. 修改MakeFile

OPENCV = -I/usr/local/include/opencv4/ `pkg-config opencv --cflags --libs`
-I 后面是自己opencv安装的目录
2. 把cpp文件中引入
#include opencv2\highgui.hpp 的地方都改为 #include 

你可能感兴趣的:(车道线检测,culane)