Commit e2863ca832ac99d0538f1a892090a53672b5ae8d
1 parent
cd5ea8de
Attempt to fork
Showing
1 changed file
with
31 additions
and
0 deletions
sdk/plugins/stasm.cpp
0 → 100644
| 1 | +#include <openbr_plugin.h> | ||
| 2 | + | ||
| 3 | +namespace br | ||
| 4 | +{ | ||
| 5 | + | ||
| 6 | +/*! | ||
| 7 | + * \ingroup transforms | ||
| 8 | + * \brief Wraps STASM key point detector | ||
| 9 | + * \author Scott Klum \cite sklum | ||
| 10 | + */ | ||
| 11 | + | ||
| 12 | +class STASMTransform : public UntrainableTransform | ||
| 13 | +{ | ||
| 14 | + Q_OBJECT | ||
| 15 | + | ||
| 16 | + void init() | ||
| 17 | + { | ||
| 18 | + | ||
| 19 | + } | ||
| 20 | + | ||
| 21 | + void project(const Template &src, Template &dst) const | ||
| 22 | + { | ||
| 23 | + | ||
| 24 | + } | ||
| 25 | +}; | ||
| 26 | + | ||
| 27 | +BR_REGISTER(Transform, STASMTransform) | ||
| 28 | + | ||
| 29 | +} // namespace br | ||
| 30 | + | ||
| 31 | +#include "stasm.moc" |