12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef LABELEDSETCREATORINTERFACE_H
- #define LABELEDSETCREATORINTERFACE_H
- #include "core/basics/Config.h"
- #include "vislearning/cbaselib/ClassNames.h"
- #include "vislearning/cbaselib/LabeledSet.h"
- namespace OBJREC
- {
- class LabeledSetCreatorInterface
- {
- public:
- LabeledSetCreatorInterface(){};
- virtual ~LabeledSetCreatorInterface(){};
-
- virtual void createLabeledSet( std::string p_sXmlFilename,
- const NICE::Config & p_conf,
- const ClassNames & p_classnames,
- LabeledSet &p_LabelSet) = 0;
- };
- }
- #endif
|