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/image_keypoint/fine_hog_image.h
dlib/image_keypoint/fine_hog_image.h
+3
-3
dlib/image_keypoint/fine_hog_image_abstract.h
dlib/image_keypoint/fine_hog_image_abstract.h
+3
-3
dlib/image_keypoint/hashed_feature_image.h
dlib/image_keypoint/hashed_feature_image.h
+3
-3
dlib/image_keypoint/hashed_feature_image_abstract.h
dlib/image_keypoint/hashed_feature_image_abstract.h
+3
-3
dlib/image_keypoint/hessian_pyramid.h
dlib/image_keypoint/hessian_pyramid.h
+3
-3
dlib/image_keypoint/hessian_pyramid_abstract.h
dlib/image_keypoint/hessian_pyramid_abstract.h
+3
-3
dlib/image_keypoint/hog.h
dlib/image_keypoint/hog.h
+3
-3
dlib/image_keypoint/hog_abstract.h
dlib/image_keypoint/hog_abstract.h
+3
-3
dlib/image_keypoint/nearest_neighbor_feature_image.h
dlib/image_keypoint/nearest_neighbor_feature_image.h
+3
-3
dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h
.../image_keypoint/nearest_neighbor_feature_image_abstract.h
+3
-3
dlib/image_keypoint/poly_image.h
dlib/image_keypoint/poly_image.h
+3
-3
dlib/image_keypoint/poly_image_abstract.h
dlib/image_keypoint/poly_image_abstract.h
+3
-3
dlib/image_loader/load_image.h
dlib/image_loader/load_image.h
+3
-3
dlib/image_processing.h
dlib/image_processing.h
+3
-3
dlib/image_processing/box_overlap_testing.h
dlib/image_processing/box_overlap_testing.h
+3
-3
dlib/image_processing/box_overlap_testing_abstract.h
dlib/image_processing/box_overlap_testing_abstract.h
+3
-3
dlib/image_processing/detection_template_tools.h
dlib/image_processing/detection_template_tools.h
+3
-3
dlib/image_processing/detection_template_tools_abstract.h
dlib/image_processing/detection_template_tools_abstract.h
+3
-3
dlib/image_processing/frontal_face_detector.h
dlib/image_processing/frontal_face_detector.h
+3
-3
dlib/image_processing/frontal_face_detector_abstract.h
dlib/image_processing/frontal_face_detector_abstract.h
+3
-3
No files found.
dlib/image_keypoint/fine_hog_image.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_FINE_HOG_IMaGE_H
_
_
#define DLIB_FINE_HOG_IMaGE_H
_
_
#ifndef DLIB_FINE_HOG_IMaGE_H
h
_
#define DLIB_FINE_HOG_IMaGE_H
h
_
#include "fine_hog_image_abstract.h"
#include "../array2d.h"
...
...
@@ -374,5 +374,5 @@ namespace dlib
}
#endif // DLIB_FINE_HOG_IMaGE_H
_
_
#endif // DLIB_FINE_HOG_IMaGE_H
h
_
dlib/image_keypoint/fine_hog_image_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_FINE_HOG_IMaGE_ABSTRACT_H
_
_
#ifdef DLIB_FINE_HOG_IMaGE_ABSTRACT_H
_
_
#undef DLIB_FINE_HOG_IMaGE_ABSTRACT_H
h
_
#ifdef DLIB_FINE_HOG_IMaGE_ABSTRACT_H
h
_
#include "../array2d.h"
#include "../matrix.h"
...
...
@@ -272,5 +272,5 @@ namespace dlib
}
#endif // DLIB_FINE_HOG_IMaGE_ABSTRACT_H
_
_
#endif // DLIB_FINE_HOG_IMaGE_ABSTRACT_H
h
_
dlib/image_keypoint/hashed_feature_image.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_HASHED_IMAGE_FEATUrES_H
_
_
#define DLIB_HASHED_IMAGE_FEATUrES_H
_
_
#ifndef DLIB_HASHED_IMAGE_FEATUrES_H
h
_
#define DLIB_HASHED_IMAGE_FEATUrES_H
h
_
#include "../lsh/projection_hash.h"
#include "hashed_feature_image_abstract.h"
...
...
@@ -513,6 +513,6 @@ namespace dlib
}
#endif // DLIB_HASHED_IMAGE_FEATUrES_H
_
_
#endif // DLIB_HASHED_IMAGE_FEATUrES_H
h
_
dlib/image_keypoint/hashed_feature_image_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_HASHED_IMAGE_FEATUrES_ABSTRACT_H
_
_
#ifdef DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_H
_
_
#undef DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_H
h
_
#ifdef DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_H
h
_
#include "../lsh/projection_hash_abstract.h"
#include <vector>
...
...
@@ -297,7 +297,7 @@ namespace dlib
}
#endif // DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_H
_
_
#endif // DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_H
h
_
dlib/image_keypoint/hessian_pyramid.h
View file @
ca498ac2
// Copyright (C) 2009 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_HESSIAN_PYRAMId_H
_
_
#define DLIB_HESSIAN_PYRAMId_H
_
_
#ifndef DLIB_HESSIAN_PYRAMId_H
h
_
#define DLIB_HESSIAN_PYRAMId_H
h
_
#include "hessian_pyramid_abstract.h"
#include "../algs.h"
...
...
@@ -527,5 +527,5 @@ namespace dlib
}
#endif // DLIB_HESSIAN_PYRAMId_H
_
_
#endif // DLIB_HESSIAN_PYRAMId_H
h
_
dlib/image_keypoint/hessian_pyramid_abstract.h
View file @
ca498ac2
// Copyright (C) 2009 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_HESSIAN_PYRAMId_ABSTRACT_H
_
_
#ifdef DLIB_HESSIAN_PYRAMId_ABSTRACT_H
_
_
#undef DLIB_HESSIAN_PYRAMId_ABSTRACT_H
h
_
#ifdef DLIB_HESSIAN_PYRAMId_ABSTRACT_H
h
_
#include "../image_transforms/integral_image_abstract.h"
#include "../noncopyable.h"
...
...
@@ -240,5 +240,5 @@ namespace dlib
}
#endif // DLIB_HESSIAN_PYRAMId_ABSTRACT_H
_
_
#endif // DLIB_HESSIAN_PYRAMId_ABSTRACT_H
h
_
dlib/image_keypoint/hog.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_HoG_H
_
_
#define DLIB_HoG_H
_
_
#ifndef DLIB_HoG_H
h
_
#define DLIB_HoG_H
h
_
#include "hog_abstract.h"
#include "../algs.h"
...
...
@@ -510,5 +510,5 @@ namespace dlib
}
#endif // DLIB_HoG_H
_
_
#endif // DLIB_HoG_H
h
_
dlib/image_keypoint/hog_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_HoG_ABSTRACT_H
_
_
#ifdef DLIB_HoG_ABSTRACT_H
_
_
#undef DLIB_HoG_ABSTRACT_H
h
_
#ifdef DLIB_HoG_ABSTRACT_H
h
_
#include "../algs.h"
#include "../matrix.h"
...
...
@@ -330,6 +330,6 @@ namespace dlib
}
#endif // DLIB_HoG_ABSTRACT_H
_
_
#endif // DLIB_HoG_ABSTRACT_H
h
_
dlib/image_keypoint/nearest_neighbor_feature_image.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_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
_
_
#define DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
_
_
#ifndef DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
h
_
#define DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
h
_
#include "nearest_neighbor_feature_image_abstract.h"
#include <vector>
...
...
@@ -403,6 +403,6 @@ namespace dlib
}
#endif // DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
_
_
#endif // DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_H
h
_
dlib/image_keypoint/nearest_neighbor_feature_image_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_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
_
_
#ifdef DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
_
_
#undef DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
h
_
#ifdef DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
h
_
#include <vector>
#include "../algs.h"
...
...
@@ -248,7 +248,7 @@ namespace dlib
}
#endif // DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
_
_
#endif // DLIB_NEAREST_NEIGHBOR_FeATURE_IMAGE_ABSTRACT_H
h
_
dlib/image_keypoint/poly_image.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_POLY_ImAGE_H
_
_
#define DLIB_POLY_ImAGE_H
_
_
#ifndef DLIB_POLY_ImAGE_H
h
_
#define DLIB_POLY_ImAGE_H
h
_
#include "poly_image_abstract.h"
#include "build_separable_poly_filters.h"
...
...
@@ -644,6 +644,6 @@ namespace dlib
}
#endif // DLIB_POLY_ImAGE_H
_
_
#endif // DLIB_POLY_ImAGE_H
h
_
dlib/image_keypoint/poly_image_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_POLY_ImAGE_ABSTRACT_H
_
_
#ifdef DLIB_POLY_ImAGE_ABSTRACT_H
_
_
#undef DLIB_POLY_ImAGE_ABSTRACT_H
h
_
#ifdef DLIB_POLY_ImAGE_ABSTRACT_H
h
_
#include "../algs.h"
#include "../matrix.h"
...
...
@@ -329,6 +329,6 @@ namespace dlib
}
#endif // DLIB_POLY_ImAGE_ABSTRACT_H
_
_
#endif // DLIB_POLY_ImAGE_ABSTRACT_H
h
_
dlib/image_loader/load_image.h
View file @
ca498ac2
// Copyright (C) 2011 Davis E. King (davis@dlib.net), Nils Labugt
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_LOAd_IMAGE_H
_
_
#define DLIB_LOAd_IMAGE_H
_
_
#ifndef DLIB_LOAd_IMAGE_H
h
_
#define DLIB_LOAd_IMAGE_H
h
_
#include "load_image_abstract.h"
#include "../string.h"
...
...
@@ -43,5 +43,5 @@ namespace dlib
}
#endif // DLIB_LOAd_IMAGE_H
_
_
#endif // DLIB_LOAd_IMAGE_H
h
_
dlib/image_processing.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_IMAGE_PROCESSInG_H_
_
_
#define DLIB_IMAGE_PROCESSInG_H_
_
_
#ifndef DLIB_IMAGE_PROCESSInG_H_
h
_
#define DLIB_IMAGE_PROCESSInG_H_
h
_
#include "image_processing/scan_image.h"
#include "image_processing/scan_image_pyramid.h"
...
...
@@ -15,6 +15,6 @@
#include "image_processing/remove_unobtainable_rectangles.h"
#include "image_processing/scan_fhog_pyramid.h"
#endif // DLIB_IMAGE_PROCESSInG_H_
_
_
#endif // DLIB_IMAGE_PROCESSInG_H_
h
_
dlib/image_processing/box_overlap_testing.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_BOX_OVERlAP_TESTING_H
_
_
#define DLIB_BOX_OVERlAP_TESTING_H
_
_
#ifndef DLIB_BOX_OVERlAP_TESTING_H
h
_
#define DLIB_BOX_OVERlAP_TESTING_H
h
_
#include "box_overlap_testing_abstract.h"
#include "../geometry.h"
...
...
@@ -164,5 +164,5 @@ namespace dlib
}
#endif // DLIB_BOX_OVERlAP_TESTING_H
_
_
#endif // DLIB_BOX_OVERlAP_TESTING_H
h
_
dlib/image_processing/box_overlap_testing_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_BOX_OVERlAP_TESTING_ABSTRACT_H
_
_
#ifdef DLIB_BOX_OVERlAP_TESTING_ABSTRACT_H
_
_
#undef DLIB_BOX_OVERlAP_TESTING_ABSTRACT_H
h
_
#ifdef DLIB_BOX_OVERlAP_TESTING_ABSTRACT_H
h
_
#include "../geometry.h"
...
...
@@ -145,6 +145,6 @@ namespace dlib
}
#endif // DLIB_BOX_OVERlAP_TESTING_ABSTRACT_H
_
_
#endif // DLIB_BOX_OVERlAP_TESTING_ABSTRACT_H
h
_
dlib/image_processing/detection_template_tools.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_DETECTION_TEMPlATE_TOOLS_H
_
_
#define DLIB_DETECTION_TEMPlATE_TOOLS_H
_
_
#ifndef DLIB_DETECTION_TEMPlATE_TOOLS_H
h
_
#define DLIB_DETECTION_TEMPlATE_TOOLS_H
h
_
#include "detection_template_tools_abstract.h"
#include "../geometry.h"
...
...
@@ -108,6 +108,6 @@ namespace dlib
}
#endif // DLIB_DETECTION_TEMPlATE_TOOLS_H
_
_
#endif // DLIB_DETECTION_TEMPlATE_TOOLS_H
h
_
dlib/image_processing/detection_template_tools_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_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
_
_
#ifdef DLIB_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
_
_
#undef DLIB_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
h
_
#ifdef DLIB_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
h
_
#include "../geometry.h"
#include <utility>
...
...
@@ -89,7 +89,7 @@ namespace dlib
}
#endif // DLIB_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
_
_
#endif // DLIB_DETECTION_TEMPlATE_TOOLS_ABSTRACT_H
h
_
dlib/image_processing/frontal_face_detector.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_FRONTAL_FACE_DETECTOr_H
_
_
#define DLIB_FRONTAL_FACE_DETECTOr_H
_
_
#ifndef DLIB_FRONTAL_FACE_DETECTOr_H
h
_
#define DLIB_FRONTAL_FACE_DETECTOr_H
h
_
#include "frontal_face_detector_abstract.h"
#include "../image_processing.h"
...
...
@@ -2368,5 +2368,5 @@ namespace dlib
}
#endif // DLIB_FRONTAL_FACE_DETECTOr_H
_
_
#endif // DLIB_FRONTAL_FACE_DETECTOr_H
h
_
dlib/image_processing/frontal_face_detector_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_FRONTAL_FACE_DETECTOr_ABSTRACT_H
_
_
#ifdef DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_H
_
_
#undef DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_H
h
_
#ifdef DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_H
h
_
#include "object_detector_abstract.h"
#include "scan_fhog_pyramid_abstract.h"
...
...
@@ -21,5 +21,5 @@ namespace dlib
}
#endif // DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_H
_
_
#endif // DLIB_FRONTAL_FACE_DETECTOr_ABSTRACT_H
h
_
Prev
1
2
3
4
5
6
7
8
…
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