123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @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
|