FIHistograms.h 451 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * @file FIHistograms.h
  3. * @brief calculate histogram
  4. * @author Erik Rodner
  5. * @date 07/23/2008
  6. */
  7. #ifndef FIHistogramsINCLUDE
  8. #define FIHistogramsINCLUDE
  9. #include "vislearning/cbaselib/CachedExample.h"
  10. namespace OBJREC {
  11. class FIHistograms {
  12. public:
  13. static void buildHSVMap (
  14. CachedExample *ce,
  15. int subsamplex,
  16. int subsampley,
  17. int numBinsH,
  18. int numBinsS,
  19. int numBinsV );
  20. };
  21. } // namespace
  22. #endif