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
92a3c410
Commit
92a3c410
authored
Jul 31, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in the object_detector testing code that caused the average
precision values to be slightly wrong.
parent
c0c1995d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
16 deletions
+11
-16
cross_validate_object_detection_trainer.h
dlib/svm/cross_validate_object_detection_trainer.h
+11
-16
No files found.
dlib/svm/cross_validate_object_detection_trainer.h
View file @
92a3c410
...
...
@@ -50,32 +50,27 @@ namespace dlib
std
::
vector
<
bool
>
used
(
boxes
.
size
(),
false
);
for
(
unsigned
long
i
=
0
;
i
<
truth_boxes
.
size
();
++
i
)
{
unsigned
long
best_idx
=
0
;
double
best_overlap
=
0
;
// Find the best box that hits truth_boxes[i]
bool
found_match
=
false
;
// Find the first box that hits truth_boxes[i]
for
(
unsigned
long
j
=
0
;
j
<
boxes
.
size
();
++
j
)
{
if
(
used
[
j
])
continue
;
const
double
overlap
=
truth_boxes
[
i
].
get_rect
().
intersect
(
boxes
[
j
].
second
).
area
()
/
(
double
)(
truth_boxes
[
i
].
get_rect
()
+
boxes
[
j
].
second
).
area
();
if
(
overlap
>
best_overlap
)
const
double
overlap
=
truth_boxes
[
i
].
get_rect
().
intersect
(
boxes
[
j
].
second
).
area
()
/
(
double
)(
truth_boxes
[
i
].
get_rect
()
+
boxes
[
j
].
second
).
area
();
if
(
overlap
>=
overlap_eps
)
{
best_overlap
=
overlap
;
best_idx
=
j
;
used
[
j
]
=
true
;
++
count
;
found_match
=
true
;
break
;
}
}
// if there was any box that hit truth_boxes[i]
if
(
best_overlap
>
overlap_eps
)
{
used
[
best_idx
]
=
true
;
++
count
;
}
else
{
if
(
!
found_match
)
++
missing_detections
;
}
}
for
(
unsigned
long
i
=
0
;
i
<
boxes
.
size
();
++
i
)
...
...
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