File size: 861 Bytes
9375c9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
// Copyright (C) 2013  Davis E. King ([email protected])
// License: Boost Software License   See LICENSE.txt for the full license.
#undef DLIB_DRAW_SURf_POINTS_ABSTRACT_H_
#ifdef DLIB_DRAW_SURf_POINTS_ABSTRACT_H_

#include "surf_abstract.h"
#include "../gui_widgets.h"

namespace dlib
{

// ----------------------------------------------------------------------------------------

    void draw_surf_points (
        image_window& win,
        const std::vector<surf_point>& sp
    );
    /*!
        ensures
            - draws all the SURF points in sp onto the given image_window.  They
              are drawn as overlay circles with extra lines to indicate the rotation
              of the SURF descriptor.
    !*/

// ----------------------------------------------------------------------------------------

}

#endif // DLIB_DRAW_SURf_POINTS_ABSTRACT_H_