Commit d50ed8eb13feb38c13c8368cc1cadbca46b08e69
1 parent
c261d4ac
added author information
Showing
1 changed file
with
29 additions
and
0 deletions
sdk/plugins/pp5.cpp
| ... | ... | @@ -32,6 +32,14 @@ |
| 32 | 32 | |
| 33 | 33 | using namespace br; |
| 34 | 34 | |
| 35 | + | |
| 36 | +/*! | |
| 37 | + * \ingroup initializers | |
| 38 | + * \brief Initialize PP5 | |
| 39 | + * \author Josh Klontz \cite jklontz | |
| 40 | + * \author E. Taborsky \cite mmtaborsky | |
| 41 | + */ | |
| 42 | + | |
| 35 | 43 | class PP5Initializer : public Initializer |
| 36 | 44 | { |
| 37 | 45 | Q_OBJECT |
| ... | ... | @@ -50,6 +58,12 @@ class PP5Initializer : public Initializer |
| 50 | 58 | |
| 51 | 59 | BR_REGISTER(Initializer, PP5Initializer) |
| 52 | 60 | |
| 61 | +/*! | |
| 62 | + * \brief PP5 context | |
| 63 | + * \author Josh Klontz \cite jklontz | |
| 64 | + * \author E. Taborsky \cite mmtaborsky | |
| 65 | + */ | |
| 66 | + | |
| 53 | 67 | struct PP5Context |
| 54 | 68 | { |
| 55 | 69 | ppr_context_type context; |
| ... | ... | @@ -194,6 +208,14 @@ struct PP5Context |
| 194 | 208 | } |
| 195 | 209 | }; |
| 196 | 210 | |
| 211 | + | |
| 212 | +/*! | |
| 213 | + * \ingroup transforms | |
| 214 | + * \brief Enroll faces in PP5 | |
| 215 | + * \author Josh Klontz \cite jklontz | |
| 216 | + * \author E. Taborsky \cite mmtaborsky | |
| 217 | + */ | |
| 218 | + | |
| 197 | 219 | class PP5Enroll : public UntrainableTransform |
| 198 | 220 | { |
| 199 | 221 | Q_OBJECT |
| ... | ... | @@ -249,6 +271,13 @@ BR_REGISTER(Transform, PP5Enroll) |
| 249 | 271 | |
| 250 | 272 | |
| 251 | 273 | |
| 274 | +/*! | |
| 275 | + * \ingroup distances | |
| 276 | + * \brief Compare templates with PP5 | |
| 277 | + * \author Josh Klontz \cite jklontz | |
| 278 | + * \author E. Taborsky \cite mmtaborsky | |
| 279 | + */ | |
| 280 | + | |
| 252 | 281 | class PP5Compare : public Distance |
| 253 | 282 | , public PP5Context |
| 254 | 283 | { | ... | ... |