contrib module missing in opencv 3.0?
I am using OpenCV 3.0 beta. I tried to create a face recogniser using createLBPHFaceRecognizer(); class as, **Ptr <FaceRecognizer> model = createLBPHFaceRecognizer();** the error I have is **error: 'createLBPHFaceRecognizer' was not declared in this scope** I have researched and found that the class exists in contrib module of opencv2 (opencv2/contrib/contrib.hpp) in previous versions of OpenCV But this module is not available in opencv 3.0 beta. So where are the recogniser classes defined in opencv 3.0? If they are not defined,how can we add this module in addition to the existing modules?