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
7747be83
Commit
7747be83
authored
Feb 12, 2017
by
Davis King
Browse files
cleanup
parent
bdd901b1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
examples/dnn_face_recognition_ex.cpp
examples/dnn_face_recognition_ex.cpp
+0
-1
No files found.
examples/dnn_face_recognition_ex.cpp
View file @
7747be83
...
@@ -140,7 +140,6 @@ int main(int argc, char** argv) try
...
@@ -140,7 +140,6 @@ int main(int argc, char** argv) try
// creates a graph of connected faces and then uses the Chinese whispers graph clustering
// creates a graph of connected faces and then uses the Chinese whispers graph clustering
// algorithm to identify how many people there are and which faces belong to whom.
// algorithm to identify how many people there are and which faces belong to whom.
std
::
vector
<
sample_pair
>
edges
;
std
::
vector
<
sample_pair
>
edges
;
int
possible_edges
=
0
;
for
(
size_t
i
=
0
;
i
<
face_descriptors
.
size
();
++
i
)
for
(
size_t
i
=
0
;
i
<
face_descriptors
.
size
();
++
i
)
{
{
for
(
size_t
j
=
i
+
1
;
j
<
face_descriptors
.
size
();
++
j
)
for
(
size_t
j
=
i
+
1
;
j
<
face_descriptors
.
size
();
++
j
)
...
...
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