Hi @Andreas,
I am sorry for my late response. In the last few days I discovered that I might have a more fundamental problem in understanding how to use CMake and CVB (I am not a professional programmer).
Yes. I built the OpenCV libraries with CMake and compiled them with mingw730_64(gcc/g++).
I tried building and compiling the QtMovie2 example but that doesn’t work. Configuration and generating the project
works without error. However, when I try to compile I get the following error:
fatal error: ../global.hpp: No such file or directory #include "../global.hpp"
Now to my “fundamental” question:
To use OpenCV in QT I have to do the following:
*.pro
INCLUDEPATH += D:\OpenCV\opencv_411_x64\install\include
LIBS += D:\OpenCV\opencv_411_x64\install\x64\mingw\bin\libopencv__core411.dll
main.cpp
#include <opencv2/core.hpp>
CMake only was needed to build OpenCV.
I assume that CVB works in a similar fashion?
*.pro
INCLUDEPATH += D:\CVB\Lib\C
LIBS += D:\CVB\*Path to compiled library*
main.cpp
#include <cvb/driver/driver.hpp>
Because right now I am not sure how to get to the “compiled library” part.