编译连接imread报错undefined reference to cv::imread(std::__cxx11::basic_string

一、问题描述

用cmake编译时出现这个问题: undefined reference to cv::imread(std::__cxx11::basic_string… 对‘cv::imread(std::__cxx11::basic_string const&, int)’未定义的引用

二、原因

新版本的opencv 把读取从链接库libopencv_highgui中剥离出来多了一个libopencv_imgcodecs出来。因此在使用新版本的opencv的时候需要把这个连接库也加上。

你可能感兴趣的:(编译连接imread报错undefined reference to cv::imread(std::__cxx11::basic_string)