Cannot open source file "opencv2 / face.hpp"

I have OpenCV 3.0.0 configured on Visual Studio 2013. It gives the error:

 'Cannot open source file "opencv2/face.hpp'

      

Doesn't it work with a pre-installed library in opencv 3.0.0? So how do I solve the problem?

+3


source to share


1 answer


Face Recognition is an add-on module and does not come standard with OpenCV.

The repo for all additional modules can be found here: https://github.com/itseez/opencv_contrib



You can rebuild OpenCV and include it along with any other additional modules you need, see the readme for instructions.

+3


source







All Articles