I downloaded and built open cv according to these open cv docs .
I am trying to compile this Eigenfaces demo and I am getting the following error.
fatal error: 'opencv2/contrib/contrib.hpp' file not found
Anxiety line
#include "opencv2/contrib/contrib.hpp"
The contrib directory is not in my usr/local/include/opencv/ directory. I referred to the following SO Question , but it looks like it only handles the case from scratch.
In addition, the repository that it refers to opencv_contrib does not even contain the contrib.hpp file
How can I just add the necessary source files to the current assembly without having to completely rebuild everything?
source share