mirror of https://github.com/davisking/dlib.git
Defaulted the overlap tester type to test_box_overlap.
This commit is contained in:
parent
3358d71446
commit
b795c19b32
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue