Commit 33665c78 authored by Davis King's avatar Davis King

Improved spec organization a little.

parent ea02f4d4
...@@ -9,8 +9,16 @@ ...@@ -9,8 +9,16 @@
namespace dlib 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; 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 ...@@ -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 < template <
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment