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
8b21c89e
Commit
8b21c89e
authored
Aug 04, 2017
by
Davis King
Browse files
Improved how the relaxed mmod overlap settings are determined.
parent
ed683785
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
dlib/dnn/loss.h
dlib/dnn/loss.h
+11
-3
No files found.
dlib/dnn/loss.h
View file @
8b21c89e
...
...
@@ -466,15 +466,23 @@ namespace dlib
// some small variability in how boxes get positioned between the training data
// and the coordinate system used by the detector when it runs. So relaxing it
// here takes care of that.
const
double
relax_amount
=
0.05
;
auto
iou_thresh
=
std
::
min
(
1.0
,
overlaps_nms
.
get_iou_thresh
()
+
relax_amount
);
auto
percent_covered_thresh
=
std
::
min
(
1.0
,
overlaps_nms
.
get_percent_covered_thresh
()
+
relax_amount
);
auto
iou_thresh
=
advance_toward_1
(
overlaps_nms
.
get_iou_thresh
());
auto
percent_covered_thresh
=
advance_toward_1
(
overlaps_nms
.
get_percent_covered_thresh
());
overlaps_nms
=
test_box_overlap
(
iou_thresh
,
percent_covered_thresh
);
}
private:
static
double
advance_toward_1
(
double
val
)
{
if
(
val
<
1
)
val
+=
(
1
-
val
)
*
0.1
;
return
val
;
}
static
size_t
count_overlaps
(
const
std
::
vector
<
rectangle
>&
rects
,
const
test_box_overlap
&
overlaps
,
...
...
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