38 #ifndef __vpDetectorFace_h__
39 #define __vpDetectorFace_h__
41 #include <visp3/core/vpConfig.h>
43 #if (VISP_HAVE_OPENCV_VERSION >= 0x020200)
47 #include <opencv2/objdetect/objdetect.hpp>
48 #include <opencv2/highgui/highgui.hpp>
49 #include <opencv2/imgproc/imgproc.hpp>
51 #include <visp3/detection/vpDetectorBase.h>
96 void setCascadeClassifierFile(
const std::string &filename);
99 bool detect(
const cv::Mat &frame_gray);
virtual ~vpDetectorFace()
cv::CascadeClassifier m_face_cascade
Haar cascade classifier file name.
virtual bool detect(const vpImage< unsigned char > &I)=0
cv::Mat m_frame_gray
OpenCV image used as input for the face detection.
std::vector< cv::Rect > m_faces
Bounding box of each detected face.