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
ca498ac2
Commit
ca498ac2
authored
Jul 18, 2014
by
Davis King
Browse files
Just removed double __ from the inclusion guard names.
parent
7ce265f5
Changes
306
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
60 additions
and
60 deletions
+60
-60
dlib/svm/sequence_labeler_abstract.h
dlib/svm/sequence_labeler_abstract.h
+3
-3
dlib/svm/sequence_segmenter.h
dlib/svm/sequence_segmenter.h
+3
-3
dlib/svm/sequence_segmenter_abstract.h
dlib/svm/sequence_segmenter_abstract.h
+3
-3
dlib/svm/simplify_linear_decision_function.h
dlib/svm/simplify_linear_decision_function.h
+3
-3
dlib/svm/simplify_linear_decision_function_abstract.h
dlib/svm/simplify_linear_decision_function_abstract.h
+3
-3
dlib/svm/sort_basis_vectors.h
dlib/svm/sort_basis_vectors.h
+3
-3
dlib/svm/sort_basis_vectors_abstract.h
dlib/svm/sort_basis_vectors_abstract.h
+3
-3
dlib/svm/structural_assignment_trainer.h
dlib/svm/structural_assignment_trainer.h
+3
-3
dlib/svm/structural_assignment_trainer_abstract.h
dlib/svm/structural_assignment_trainer_abstract.h
+3
-3
dlib/svm/structural_graph_labeling_trainer.h
dlib/svm/structural_graph_labeling_trainer.h
+3
-3
dlib/svm/structural_graph_labeling_trainer_abstract.h
dlib/svm/structural_graph_labeling_trainer_abstract.h
+3
-3
dlib/svm/structural_object_detection_trainer.h
dlib/svm/structural_object_detection_trainer.h
+3
-3
dlib/svm/structural_object_detection_trainer_abstract.h
dlib/svm/structural_object_detection_trainer_abstract.h
+3
-3
dlib/svm/structural_sequence_labeling_trainer.h
dlib/svm/structural_sequence_labeling_trainer.h
+3
-3
dlib/svm/structural_sequence_labeling_trainer_abstract.h
dlib/svm/structural_sequence_labeling_trainer_abstract.h
+3
-3
dlib/svm/structural_sequence_segmentation_trainer.h
dlib/svm/structural_sequence_segmentation_trainer.h
+3
-3
dlib/svm/structural_sequence_segmentation_trainer_abstract.h
dlib/svm/structural_sequence_segmentation_trainer_abstract.h
+3
-3
dlib/svm/structural_svm_assignment_problem.h
dlib/svm/structural_svm_assignment_problem.h
+3
-3
dlib/svm/structural_svm_assignment_problem_abstract.h
dlib/svm/structural_svm_assignment_problem_abstract.h
+3
-3
dlib/svm/structural_svm_distributed.h
dlib/svm/structural_svm_distributed.h
+3
-3
No files found.
dlib/svm/sequence_labeler_abstract.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
_
_
#ifdef DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
_
_
#undef DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
h
_
#ifdef DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
h
_
#include "../matrix.h"
#include <vector>
...
...
@@ -391,6 +391,6 @@ namespace dlib
}
#endif // DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
_
_
#endif // DLIB_SEQUENCE_LAbELER_ABSTRACT_H_
h
_
dlib/svm/sequence_segmenter.h
View file @
ca498ac2
// Copyright (C) 2013 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_SEQUENCE_SeGMENTER_H_
_
_
#define DLIB_SEQUENCE_SeGMENTER_H_
_
_
#ifndef DLIB_SEQUENCE_SeGMENTER_H_
h
_
#define DLIB_SEQUENCE_SeGMENTER_H_
h
_
#include "sequence_segmenter_abstract.h"
#include "../matrix.h"
...
...
@@ -463,6 +463,6 @@ namespace dlib
}
#endif // DLIB_SEQUENCE_SeGMENTER_H_
_
_
#endif // DLIB_SEQUENCE_SeGMENTER_H_
h
_
dlib/svm/sequence_segmenter_abstract.h
View file @
ca498ac2
// Copyright (C) 2013 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
_
_
#ifdef DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
_
_
#undef DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
h
_
#ifdef DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
h
_
#include "../matrix.h"
#include <vector>
...
...
@@ -448,5 +448,5 @@ namespace dlib
}
#endif // DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
_
_
#endif // DLIB_SEQUENCE_SeGMENTER_ABSTRACT_H_
h
_
dlib/svm/simplify_linear_decision_function.h
View file @
ca498ac2
// Copyright (C) 2010 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
_
_
#define DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
_
_
#ifndef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
h
_
#define DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
h
_
#include "simplify_linear_decision_function_abstract.h"
#include "../algs.h"
...
...
@@ -106,5 +106,5 @@ namespace dlib
}
#endif // DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
_
_
#endif // DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_H
h
_
dlib/svm/simplify_linear_decision_function_abstract.h
View file @
ca498ac2
// Copyright (C) 2010 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
_
_
#ifdef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
_
_
#undef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
h
_
#ifdef DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
h
_
#include "../algs.h"
#include "function_abstract.h"
...
...
@@ -70,5 +70,5 @@ namespace dlib
}
#endif // DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
_
_
#endif // DLIB_SIMPLIFY_LINEAR_DECiSION_FUNCTION_ABSTRACT_H
h
_
dlib/svm/sort_basis_vectors.h
View file @
ca498ac2
// Copyright (C) 2010 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_SORT_BASIS_VECTORs_H
_
_
#define DLIB_SORT_BASIS_VECTORs_H
_
_
#ifndef DLIB_SORT_BASIS_VECTORs_H
h
_
#define DLIB_SORT_BASIS_VECTORs_H
h
_
#include <vector>
...
...
@@ -220,5 +220,5 @@ namespace dlib
}
#endif // DLIB_SORT_BASIS_VECTORs_H
_
_
#endif // DLIB_SORT_BASIS_VECTORs_H
h
_
dlib/svm/sort_basis_vectors_abstract.h
View file @
ca498ac2
// Copyright (C) 2010 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
_
_
#ifdef DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
_
_
#undef DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
h
_
#ifdef DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
h
_
#include <vector>
...
...
@@ -55,5 +55,5 @@ namespace dlib
}
#endif // DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
_
_
#endif // DLIB_SORT_BASIS_VECTORs_ABSTRACT_H
h
_
dlib/svm/structural_assignment_trainer.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
_
_
#define DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
_
_
#ifndef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
h
_
#define DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
h
_
#include "structural_assignment_trainer_abstract.h"
#include "../algs.h"
...
...
@@ -269,7 +269,7 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
_
_
#endif // DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_H
h
_
...
...
dlib/svm/structural_assignment_trainer_abstract.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
_
_
#ifdef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
_
_
#undef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
h
_
#ifdef DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
h
_
#include "../algs.h"
#include "structural_svm_assignment_problem.h"
...
...
@@ -269,6 +269,6 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
_
_
#endif // DLIB_STRUCTURAL_ASSiGNMENT_TRAINER_ABSTRACT_H
h
_
dlib/svm/structural_graph_labeling_trainer.h
View file @
ca498ac2
// Copyright (C) 2012 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
_
_
#define DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
_
_
#ifndef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
h
_
#define DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
h
_
#include "structural_graph_labeling_trainer_abstract.h"
#include "../algs.h"
...
...
@@ -278,5 +278,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
_
_
#endif // DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_H
h
_
dlib/svm/structural_graph_labeling_trainer_abstract.h
View file @
ca498ac2
// Copyright (C) 2012 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
_
_
#ifdef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
_
_
#undef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
h
_
#ifdef DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
h
_
#include "../algs.h"
#include "../optimization.h"
...
...
@@ -261,5 +261,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
_
_
#endif // DLIB_STRUCTURAL_GRAPH_LABELING_tRAINER_ABSTRACT_H
h
_
dlib/svm/structural_object_detection_trainer.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
_
_
#define DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
_
_
#ifndef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
h
_
#define DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
h
_
#include "structural_object_detection_trainer_abstract.h"
#include "../algs.h"
...
...
@@ -397,6 +397,6 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
_
_
#endif // DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H
h
_
dlib/svm/structural_object_detection_trainer_abstract.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
_
_
#ifdef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
_
_
#undef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
h
_
#ifdef DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
h
_
#include "structural_svm_object_detection_problem_abstract.h"
#include "../image_processing/object_detector_abstract.h"
...
...
@@ -385,6 +385,6 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
_
_
#endif // DLIB_STRUCTURAL_OBJECT_DETECTION_TRAiNER_H_ABSTRACT
h
_
dlib/svm/structural_sequence_labeling_trainer.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
_
_
#define DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
_
_
#ifndef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
h
_
#define DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
h
_
#include "structural_sequence_labeling_trainer_abstract.h"
#include "../algs.h"
...
...
@@ -252,7 +252,7 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
_
_
#endif // DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_H
h
_
dlib/svm/structural_sequence_labeling_trainer_abstract.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
_
_
#ifdef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
_
_
#undef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
h
_
#ifdef DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
h
_
#include "../algs.h"
#include "../optimization.h"
...
...
@@ -241,7 +241,7 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
_
_
#endif // DLIB_STRUCTURAL_SEQUENCE_LABELING_TRAiNER_ABSTRACT_H
h
_
...
...
dlib/svm/structural_sequence_segmentation_trainer.h
View file @
ca498ac2
// Copyright (C) 2013 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
_
_
#define DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
_
_
#ifndef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
h
_
#define DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
h
_
#include "structural_sequence_segmentation_trainer_abstract.h"
#include "structural_sequence_labeling_trainer.h"
...
...
@@ -267,5 +267,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
_
_
#endif // DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_H
h
_
dlib/svm/structural_sequence_segmentation_trainer_abstract.h
View file @
ca498ac2
// Copyright (C) 2013 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
_
_
#ifdef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
_
_
#undef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
h
_
#ifdef DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
h
_
#include "sequence_segmenter_abstract.h"
...
...
@@ -242,5 +242,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
_
_
#endif // DLIB_STRUCTURAL_SEQUENCE_sEGMENTATION_TRAINER_ABSTRACT_H
h
_
dlib/svm/structural_svm_assignment_problem.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
_
_
#define DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
_
_
#ifndef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
h
_
#define DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
h
_
#include "structural_svm_assignment_problem_abstract.h"
...
...
@@ -284,5 +284,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
_
_
#endif // DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_H
h
_
dlib/svm/structural_svm_assignment_problem_abstract.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
_
_
#ifdef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
_
_
#undef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
h
_
#ifdef DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
h
_
#include "../matrix.h"
...
...
@@ -81,7 +81,7 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
_
_
#endif // DLIB_STRUCTURAL_SVM_ASSiGNMENT_PROBLEM_ABSTRACT_H
h
_
dlib/svm/structural_svm_distributed.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
_
_
#define DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
_
_
#ifndef DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
h
_
#define DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
h
_
#include "structural_svm_distributed_abstract.h"
...
...
@@ -684,5 +684,5 @@ namespace dlib
}
#endif // DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
_
_
#endif // DLIB_STRUCTURAL_SVM_DISTRIBUTeD_H
h
_
Prev
1
…
9
10
11
12
13
14
15
16
Next
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