12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * @file PSSQueue.h
- * @brief application of multiple post semantic segmentation methods
- * @author Erik Rodner
- * @date 03/19/2009
- */
- #ifndef PSSQUEUEINCLUDE
- #define PSSQUEUEINCLUDE
- #ifdef NOVISUAL
- #include <objrec/nice_nonvis.h>
- #else
- #include <objrec/nice.h>
- #endif
- namespace OBJREC
- {
- /** application of multiple post semantic segmentation methods */
- class PSSQueue
- {
- protected:
- public:
- /** simple constructor */
- PSSQueue();
- /** simple destructor */
- virtual ~PSSQueue();
- };
- } // namespace
- #endif
|