Commit b795c19b authored by Davis King's avatar Davis King

Defaulted the overlap tester type to test_box_overlap.

parent 3358d714
......@@ -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
{
......
......@@ -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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment