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