Defaulted the overlap tester type to test_box_overlap.

This commit is contained in:
Davis King 2011-09-11 12:03:08 -04:00
parent 3358d71446
commit b795c19b32
2 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,7 @@
#include "../matrix.h"
#include "../geometry.h"
#include <vector>
#include "box_overlap_testing.h"
namespace dlib
{
@ -15,7 +16,7 @@ namespace dlib
template <
typename image_scanner_type,
typename overlap_tester_type
typename overlap_tester_type = test_box_overlap
>
class object_detector
{

View File

@ -6,6 +6,7 @@
#include "../matrix.h"
#include "../geometry.h"
#include <vector>
#include "box_overlap_testing_abstract.h"
namespace dlib
{
@ -14,7 +15,7 @@ namespace dlib
template <
typename image_scanner_type,
typename overlap_tester_type
typename overlap_tester_type = test_box_overlap
>
class object_detector
{