diff --git a/sdk/plugins/stasm.cpp b/sdk/plugins/stasm.cpp new file mode 100644 index 0000000..ed88dcf --- /dev/null +++ b/sdk/plugins/stasm.cpp @@ -0,0 +1,31 @@ +#include + +namespace br +{ + +/*! + * \ingroup transforms + * \brief Wraps STASM key point detector + * \author Scott Klum \cite sklum + */ + +class STASMTransform : public UntrainableTransform +{ + Q_OBJECT + + void init() + { + + } + + void project(const Template &src, Template &dst) const + { + + } +}; + +BR_REGISTER(Transform, STASMTransform) + +} // namespace br + +#include "stasm.moc"