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
33665c78
Commit
33665c78
authored
Apr 28, 2012
by
Davis King
Browse files
Improved spec organization a little.
parent
ea02f4d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
dlib/graph_cuts/min_cut_abstract.h
dlib/graph_cuts/min_cut_abstract.h
+8
-6
No files found.
dlib/graph_cuts/min_cut_abstract.h
View file @
33665c78
...
...
@@ -9,8 +9,16 @@
namespace
dlib
{
/*!A node_label
The node_label type is the type used to label which part of a graph cut
a node is on. It is used by all the graph cut tools. The three possible
values of a node label are SOURCE_CUT, SINK_CUT, or FREE_NODE.
!*/
typedef
unsigned
char
node_label
;
const
node_label
SOURCE_CUT
=
0
;
const
node_label
SINK_CUT
=
1
;
const
node_label
FREE_NODE
=
2
;
// ----------------------------------------------------------------------------------------
...
...
@@ -328,12 +336,6 @@ namespace dlib
};
// ----------------------------------------------------------------------------------------
const
node_label
SOURCE_CUT
=
0
;
const
node_label
SINK_CUT
=
1
;
const
node_label
FREE_NODE
=
2
;
// ----------------------------------------------------------------------------------------
template
<
...
...
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