PSSQueue.h 540 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * @file PSSQueue.h
  3. * @brief application of multiple post semantic segmentation methods
  4. * @author Erik Rodner
  5. * @date 03/19/2009
  6. */
  7. #ifndef PSSQUEUEINCLUDE
  8. #define PSSQUEUEINCLUDE
  9. #ifdef NOVISUAL
  10. #include <objrec/nice_nonvis.h>
  11. #else
  12. #include <objrec/nice.h>
  13. #endif
  14. namespace OBJREC {
  15. /** application of multiple post semantic segmentation methods */
  16. class PSSQueue
  17. {
  18. protected:
  19. public:
  20. /** simple constructor */
  21. PSSQueue();
  22. /** simple destructor */
  23. virtual ~PSSQueue();
  24. };
  25. } // namespace
  26. #endif