Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
bc11e397
Commit
bc11e397
authored
Jan 14, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Just cleaned up the code a little to make it easier to follow.
parent
c56f3465
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
structural_svm_object_detection_problem.h
dlib/svm/structural_svm_object_detection_problem.h
+12
-5
No files found.
dlib/svm/structural_svm_object_detection_problem.h
View file @
bc11e397
...
@@ -267,6 +267,9 @@ namespace dlib
...
@@ -267,6 +267,9 @@ namespace dlib
// Measure the loss augmented score for the detections which hit a truth rect.
// Measure the loss augmented score for the detections which hit a truth rect.
std
::
vector
<
double
>
truth_score_hits
(
truth_rects
[
idx
].
size
(),
0
);
std
::
vector
<
double
>
truth_score_hits
(
truth_rects
[
idx
].
size
(),
0
);
// keep track of which truth boxes we have hit so far.
std
::
vector
<
bool
>
hit_truth_table
(
truth_rects
[
idx
].
size
(),
false
);
std
::
vector
<
rectangle
>
final_dets
;
std
::
vector
<
rectangle
>
final_dets
;
// The point of this loop is to fill out the truth_score_hits array.
// The point of this loop is to fill out the truth_score_hits array.
for
(
unsigned
long
i
=
0
;
i
<
dets
.
size
()
&&
final_dets
.
size
()
<
max_num_dets
;
++
i
)
for
(
unsigned
long
i
=
0
;
i
<
dets
.
size
()
&&
final_dets
.
size
()
<
max_num_dets
;
++
i
)
...
@@ -284,16 +287,20 @@ namespace dlib
...
@@ -284,16 +287,20 @@ namespace dlib
{
{
// if this is the first time we have seen a detect which hit truth_rects[truth.second]
// if this is the first time we have seen a detect which hit truth_rects[truth.second]
const
double
score
=
dets
[
i
].
first
-
thresh
;
const
double
score
=
dets
[
i
].
first
-
thresh
;
if
(
truth_score_hits
[
truth
.
second
]
==
0
)
if
(
hit_truth_table
[
truth
.
second
]
==
false
)
truth_score_hits
[
truth
.
second
]
+=
score
-
loss_per_missed_target
;
{
hit_truth_table
[
truth
.
second
]
=
true
;
truth_score_hits
[
truth
.
second
]
+=
score
;
}
else
else
{
truth_score_hits
[
truth
.
second
]
+=
score
+
loss_per_false_alarm
;
truth_score_hits
[
truth
.
second
]
+=
score
+
loss_per_false_alarm
;
}
}
}
}
}
hit_truth_table
.
assign
(
hit_truth_table
.
size
(),
false
);
// keep track of which truth boxes we have hit so far.
std
::
vector
<
bool
>
hit_truth_table
(
truth_rects
[
idx
].
size
(),
false
);
final_dets
.
clear
();
final_dets
.
clear
();
// Now figure out which detections jointly maximize the loss and detection score sum. We
// Now figure out which detections jointly maximize the loss and detection score sum. We
// need to take into account the fact that allowing a true detection in the output, while
// need to take into account the fact that allowing a true detection in the output, while
...
@@ -309,7 +316,7 @@ namespace dlib
...
@@ -309,7 +316,7 @@ namespace dlib
const
double
truth_match
=
truth
.
first
;
const
double
truth_match
=
truth
.
first
;
if
(
truth_match
>
match_eps
)
if
(
truth_match
>
match_eps
)
{
{
if
(
truth_score_hits
[
truth
.
second
]
>
=
0
)
if
(
truth_score_hits
[
truth
.
second
]
>
loss_per_missed_target
)
{
{
if
(
!
hit_truth_table
[
truth
.
second
])
if
(
!
hit_truth_table
[
truth
.
second
])
{
{
...
...
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