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
c4a516b0
Commit
c4a516b0
authored
Jun 23, 2012
by
Davis King
Browse files
Fixed a minor typo in the code. It shouldn't have negatively effected anything.
But nevertheless, it's fixed.
parent
4a862889
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/svm/structural_svm_object_detection_problem.h
dlib/svm/structural_svm_object_detection_problem.h
+2
-2
No files found.
dlib/svm/structural_svm_object_detection_problem.h
View file @
c4a516b0
...
...
@@ -64,8 +64,8 @@ namespace dlib
max_num_dets
=
0
;
for
(
unsigned
long
i
=
0
;
i
<
truth_rects
.
size
();
++
i
)
{
if
(
truth_rects
.
size
()
>
max_num_dets
)
max_num_dets
=
truth_rects
.
size
();
if
(
truth_rects
[
i
]
.
size
()
>
max_num_dets
)
max_num_dets
=
truth_rects
[
i
]
.
size
();
scanners
[
i
].
copy_configuration
(
scanner
);
}
...
...
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