System information (version)
OpenCV =>opencv-4.0.0-alpha and opencv_contrib-4.0.0-alpha
Operating System / Platform => Ubuntu 16.04
Compiler and CMake => gcc 5.4.0 and cmake version 3.5.1
Detailed description
I am trying to compile the source cpp files in rgbd module of opencv_contrib-4.0.0-alpha. I am getting this error :
$ g++ -ggdb -std=c++11 depth_cleaner.cpp -o depth_cleaner pkg-config opencv4 --cflags --libs In file included from depth_cleaner.cpp:7:0: precomp.hpp:14:36: fatal error: opencv2/core/private.hpp: No such file or directory compilation terminated.
I have built opencv_contrib module following this link without any errors: https://github.com/opencv/opencv_contrib#how-to-build-opencv-with-extra-modules
But apparently no contrib.h or private.hpp file generated after the build process. Is this the problem with this particular version of opencv_contrib? Should I try with older opencv_contrib-3xx version?
Please help.