- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在用 cmake 编译 opencv 程序。 代码如下:
显示图像.cpp:
#include <stdio.h>
#include <opencv2/opencv.hpp>
using namespace cv;
int main(int argc, char** argv )
{
if ( argc != 2 )
{
printf("usage: DisplayImage.out <Image_Path>\n");
return -1;
}
Mat image;
image = imread( argv[1], 1 );
if ( !image.data )
{
printf("No image data \n");
return -1;
}
namedWindow("Display Image", WINDOW_AUTOSIZE );
imshow("Display Image", image);
waitKey(0);
return 0;
}
CMakeLists.txt:
cmake_minimum_required(VERSION 2.8)
project( DisplayImage )
set(OpenCV_DIR /home/lmk/opencv-3.1.0/release)
include_directories( ${OpenCV_INCLUDE_DIRS} )
add_executable( DisplayImage DisplayImage.cpp )
target_link_libraries( DisplayImage ${OpenCV_LIBS} )
我将 DisplayImage.cpp 和 CMakeLists.txt 放在我个人主文件夹中名为 test 的文件夹中,即 /home/lmk/test/
。 然后我使用命令行:
lmk@lmk-virtual-machine:~/test$ mkdir build
lmk@lmk-virtual-machine:~/test$ cd build
lmk@lmk-virtual-machine:~/test/build$ cmake ..
哪个给我:
-- The C compiler identification is GNU 5.3.0
-- The CXX compiler identification is GNU 5.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/lmk/test/build
但是当我使用时:
Scanning dependencies of target DisplayImage
[100%] Building CXX object CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o
/home/lmk/test/DisplayImage.cpp:2:30: fatal eror:opencv2/opencv.hpp:No such file or directory
compilation terminated.
make[2]: * [CMakeFiles/DisplayImage.dir/DisplayImage.cpp.o] Error 1
make[1]: * [CMakeFiles/DisplayImage.dir/all] Error 2
make: *** [all] Error 1
你知道为什么吗? 我在 VM 中的 ubuntu 14.04 终端中使用 opencv 3.1.0 和 cmake 2.8.12.2!
最佳答案
为什么不使用“典型”方式,使用 find_package()
?
尝试重复 this 中的步骤教程,并报告正在发生的事情。
关于linux - cmake 错误 : opencv2/opencv. hpp:opencv2/opencv.hpp:No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35935560/
首先我安装了 Cmake 和 opencv。然后通过添加环境使用 mingw32-make 等在 QT 上安装 OpenCV。我将库包含在 .pro 文件中。我不知道为什么找不到这些包含。 image
我目前正在做一个 C++ 项目。 简而言之,我有 3 个类和一个 main.cpp 文件。 1) 列表类//使用一个 vector 2) 堆类 3) 树类//BST 为了正确组织自己,我将每个类分成单
这个问题在这里已经有了答案: What is the difference between #include and #include "filename"? (31 个答案) 关闭 7 年前。
我使用 c++ 程序使用 opencv 2.1 进行图像处理。该程序包含以下文件: #include "opencv2/core/core.hpp" #include "opencv2/imgproc
大多数 OpenCV 中的每个示例代码都以这些行(或类似的东西)开头: #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui
我正在使用 boost.python 将 C++ 对象暴露给 python。 我应该使用 #include boost/python.hpp 或 #include boost/Python.hpp ?
这个问题在这里已经有了答案: How does the compilation/linking process work? (5 个答案) Why have header files and .cp
大家好,我正在尝试使用我从源代码构建的 opencv-c++ API(版本 4.4.0)。它安装在/usr/local/中,我只是尝试使用以下代码加载和显示图像 - #include #includ
我是 重写我的 Windows C++ native 库 (自 2002 年以来一直在努力)考虑到公开发布。在过去的 10 年里,我一直是这 150 多个 KLOC 的唯一受益者,我觉得其他人也可能会
boost中有两个随机整数生成器,boost::uniform_int<>和 boost::random::uniform_int_distribution<> ,后者仅在 boost 1.47 之后
我正在用 cmake 编译 opencv 程序。 代码如下: 显示图像.cpp: #include #include using namespace cv; int main(int argc,
我想知道是否可以直接在 CMakeLists.txt 中包含头文件,而不是 cpp 或 hpp 文件。我正在做一个项目,所有 cpp 文件都需要包含一些 hpp 文件。我可以添加 #include "
有的程序有第一个,有的程序有第二个。两者有什么区别,我们什么时候使用它们? 最佳答案 我认为这是一个合理的问题。引自 OpenCV documentation : Headers layout In
我是 opencv 库的初学者。我已经在 Ubuntu 17.04 上安装了它,安装过程中的一切都很完美,一点错误都没有。我已经安装了 Opencv-master,构建了它,然后我下载了 opencv
我试图找到一个很好的例子来说明如何使用这些二进制宽字符版本的 boost 序列化内容。我拼凑了一些代码来尝试让它工作,但不幸的是,我在尝试编译它时遇到了链接器错误的轰炸。 这是我的代码,以防我做任何明
我正在尝试集成来自 nlohmann 的 json C++ 库,同时简单地将“single_include”文件复制到与我的 main.cpp 文件相同的目录中。根据集成 instructions #
我对 linux 或 c++ 几乎一无所知。 我通常按照这些说明在 ubuntu 12.10 上构建 boost http://piyushparkash.blogspot.com/2012/10/i
我试图使用features2d文件夹中存在的features2d.hpp函数来检测图像的某些特征。使用此头文件时代码崩溃。当我从nonfree文件夹使用具有相同名称的头文件时,它可以正常工作。有人能弄
我想使用 stitching mechanism来自 C++ 中的 OpenCV 库,但在安装 OpenCV 3.0 后,我在“opencv2”文件夹中看不到任何 stitcher.hpp 文件。它在
我正在尝试使用网络摄像头检测车道。我可以在开始时编译它并对其进行测试,但是在更改了我曾经使用的机器之后。 它不再工作了。给我一些错误。 以下是代码 int run() { bool pause
我是一名优秀的程序员,十分优秀!