include nonfree openCV 2.4.10 on ubuntu

百般思念 提交于 2019-11-29 08:00:02

问题


I've installed OpenCV on ubuntu using this link and I'm trying to use SURF descriptor. I knew that they changed the location of these type of descriptors to the nonfree module so we need to include it, which is something like this: #include "opencv2/nonfree/features2d.hpp". The problem is that I'm getting this error at compile time: opencv2/nonfree/features2d.hpp no such file or directory.

Any idea how to fix it?

EDITED: The other parts of openCV are working fine. I'm including the following libraries and everything is looking good:

#include "opencv2/core/core.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/legacy/legacy.hpp"

I checked the inlcude folder in my OpenCV directory and the nonfree folder is there. Moreover, it's the only library that I can't access within QTCreator (The environment I'm using) because I tried to include all the other librairies found in the Inlcude folder and they looked good.

EDITED2: You can see a screenshot of what I saw when I ran make VERBOSE=1 on this link

So not sure where to look? Actually, I did not find the nonfree folder in ../usr/include/opencv2/

Thanks.


回答1:


Actually, I just updated openCV using the following commands then it worked:

sudo add-apt-repository --yes ppa:xqms/opencv-nonfree
sudo apt-get update 
sudo apt-get install libopencv-nonfree-dev



回答2:


sudo add-apt-repository --yes ppa:xqms/opencv-nonfree
sudo apt-get update
sudo apt-get install libopencv-nonfree-dev

---this answer works well for me, thanks @Maystro

after this step, just link your program to -lopencv_nonfree, or you cannot access to surf.



来源:https://stackoverflow.com/questions/27481849/include-nonfree-opencv-2-4-10-on-ubuntu

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!