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
5d264ae5
Commit
5d264ae5
authored
Nov 22, 2013
by
Davis King
Browse files
Changed the default parameters of the test_box_overlap object. Now it
defaults to using exactly the PASCAL VOC match criterion.
parent
afc756ff
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dlib/image_processing/box_overlap_testing.h
dlib/image_processing/box_overlap_testing.h
+1
-1
dlib/image_processing/box_overlap_testing_abstract.h
dlib/image_processing/box_overlap_testing_abstract.h
+1
-1
No files found.
dlib/image_processing/box_overlap_testing.h
View file @
5d264ae5
...
...
@@ -16,7 +16,7 @@ namespace dlib
{
public:
test_box_overlap
(
)
:
match_thresh
(
0.5
),
overlap_thresh
(
0.5
)
)
:
match_thresh
(
0.5
),
overlap_thresh
(
1.0
)
{}
test_box_overlap
(
...
...
dlib/image_processing/box_overlap_testing_abstract.h
View file @
5d264ae5
...
...
@@ -29,7 +29,7 @@ namespace dlib
/*!
ensures
- #get_match_thresh() == 0.5
- #get_overlap_thresh() ==
0.5
- #get_overlap_thresh() ==
1.0
!*/
test_box_overlap
(
...
...
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