Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
b795c19b
Commit
b795c19b
authored
Sep 11, 2011
by
Davis King
Browse files
Defaulted the overlap tester type to test_box_overlap.
parent
3358d714
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
dlib/image_processing/object_detector.h
dlib/image_processing/object_detector.h
+2
-1
dlib/image_processing/object_detector_abstract.h
dlib/image_processing/object_detector_abstract.h
+2
-1
No files found.
dlib/image_processing/object_detector.h
View file @
b795c19b
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
#include "../matrix.h"
#include "../matrix.h"
#include "../geometry.h"
#include "../geometry.h"
#include <vector>
#include <vector>
#include "box_overlap_testing.h"
namespace
dlib
namespace
dlib
{
{
...
@@ -15,7 +16,7 @@ namespace dlib
...
@@ -15,7 +16,7 @@ namespace dlib
template
<
template
<
typename
image_scanner_type
,
typename
image_scanner_type
,
typename
overlap_tester_type
typename
overlap_tester_type
=
test_box_overlap
>
>
class
object_detector
class
object_detector
{
{
...
...
dlib/image_processing/object_detector_abstract.h
View file @
b795c19b
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
#include "../matrix.h"
#include "../matrix.h"
#include "../geometry.h"
#include "../geometry.h"
#include <vector>
#include <vector>
#include "box_overlap_testing_abstract.h"
namespace
dlib
namespace
dlib
{
{
...
@@ -14,7 +15,7 @@ namespace dlib
...
@@ -14,7 +15,7 @@ namespace dlib
template
<
template
<
typename
image_scanner_type
,
typename
image_scanner_type
,
typename
overlap_tester_type
typename
overlap_tester_type
=
test_box_overlap
>
>
class
object_detector
class
object_detector
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment