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
2dfbf778
Commit
2dfbf778
authored
Mar 20, 2017
by
Davis King
Browse files
merged
parents
a05c1914
f080bdec
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
dlib/graph_utils/edge_list_graphs.h
dlib/graph_utils/edge_list_graphs.h
+1
-1
dlib/image_processing/scan_fhog_pyramid.h
dlib/image_processing/scan_fhog_pyramid.h
+0
-1
No files found.
dlib/graph_utils/edge_list_graphs.h
View file @
2dfbf778
...
@@ -286,7 +286,7 @@ namespace dlib
...
@@ -286,7 +286,7 @@ namespace dlib
// Hold the length for the longest edge for each node. Initially they are all infinity.
// Hold the length for the longest edge for each node. Initially they are all infinity.
std
::
vector
<
double
>
worst_dists
(
samples
.
size
(),
std
::
numeric_limits
<
double
>::
infinity
());
std
::
vector
<
double
>
worst_dists
(
samples
.
size
(),
std
::
numeric_limits
<
double
>::
infinity
());
std
::
vector
<
sample_pair
>::
iterator
begin_i
,
end_i
,
begin_j
,
end_j
,
itr
;
std
::
vector
<
sample_pair
>::
iterator
begin_i
,
end_i
,
begin_j
,
end_j
;
begin_i
=
edges
.
begin
();
begin_i
=
edges
.
begin
();
end_i
=
begin_i
+
k
;
end_i
=
begin_i
+
k
;
...
...
dlib/image_processing/scan_fhog_pyramid.h
View file @
2dfbf778
...
@@ -1306,7 +1306,6 @@ namespace dlib
...
@@ -1306,7 +1306,6 @@ namespace dlib
// Do non-max suppression
// Do non-max suppression
dets
.
clear
();
if
(
detectors
.
size
()
>
1
)
if
(
detectors
.
size
()
>
1
)
std
::
sort
(
dets_accum
.
rbegin
(),
dets_accum
.
rend
());
std
::
sort
(
dets_accum
.
rbegin
(),
dets_accum
.
rend
());
for
(
unsigned
long
i
=
0
;
i
<
dets_accum
.
size
();
++
i
)
for
(
unsigned
long
i
=
0
;
i
<
dets_accum
.
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