PSSQueue.h 532 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. {
  16. /** application of multiple post semantic segmentation methods */
  17. class PSSQueue
  18. {
  19. protected:
  20. public:
  21. /** simple constructor */
  22. PSSQueue();
  23. /** simple destructor */
  24. virtual ~PSSQueue();
  25. };
  26. } // namespace
  27. #endif