// Copyright (C) 2013 Davis E. King ([email protected]) | |
// License: Boost Software License See LICENSE.txt for the full license. | |
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. | |
!*/ | |
// ---------------------------------------------------------------------------------------- | |
} | |