summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/image_processing/frontal_face_detector_abstract.h
blob: 20815cd0e4e06b7ce31a8e5b9a41a69e045d56e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2013  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#undef DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_Hh_
#ifdef DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_Hh_

#include "object_detector_abstract.h"
#include "scan_fhog_pyramid_abstract.h"
#include "../image_transforms/image_pyramid_abstract.h"

namespace dlib
{
    typedef object_detector<scan_fhog_pyramid<pyramid_down<6> > > frontal_face_detector;

    frontal_face_detector get_frontal_face_detector(
    );
    /*!
        ensures
            - returns an object_detector that is configured to find human faces that are
              looking more or less towards the camera.
    !*/

}

#endif // DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_Hh_