From 7e8fca15e38efd580363f3520e2d8ee37b100dda Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Thu, 4 Jun 2015 11:06:50 -0400 Subject: [PATCH] Cleanup --- openbr/plugins/classification/dlib.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/openbr/plugins/classification/dlib.cpp b/openbr/plugins/classification/dlib.cpp index 9448e90..9b5d4c4 100644 --- a/openbr/plugins/classification/dlib.cpp +++ b/openbr/plugins/classification/dlib.cpp @@ -16,6 +16,11 @@ using namespace dlib; namespace br { +/*! + * \ingroup transforms + * \brief Wrapper to dlib's landmarker. + * \author Scott Klum \cite sklum + */ class DLibShapeResourceMaker : public ResourceMaker { @@ -66,7 +71,12 @@ private: BR_REGISTER(Transform, DLandmarkerTransform) -class DObjectDetectTransform : public Transform +/*! + * \ingroup transforms + * \brief Wrapper to dlib's trainable object detector. + * \author Scott Klum \cite sklum + */ +class DObjectDetectorTransform : public Transform { Q_OBJECT @@ -169,7 +179,7 @@ private: } }; -BR_REGISTER(Transform, DObjectDetectTransform) +BR_REGISTER(Transform, DObjectDetectorTransform) } // namespace br -- libgit2 0.21.4