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
0ac4a540
Commit
0ac4a540
authored
Dec 15, 2011
by
Davis King
Browse files
The object_detector had code in it which limited the number of outputs
to 100 rectangles. This has been removed.
parent
7b591aba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dlib/image_processing/object_detector.h
dlib/image_processing/object_detector.h
+1
-1
No files found.
dlib/image_processing/object_detector.h
View file @
0ac4a540
...
...
@@ -209,7 +209,7 @@ namespace dlib
scanner
.
load
(
img
);
scanner
.
detect
(
w
,
dets
,
thresh
);
for
(
unsigned
long
i
=
0
;
i
<
dets
.
size
()
&&
final_dets
.
size
()
<
100
;
++
i
)
for
(
unsigned
long
i
=
0
;
i
<
dets
.
size
();
++
i
)
{
if
(
overlaps_any_box
(
final_dets
,
dets
[
i
].
second
))
continue
;
...
...
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