FIGradients.h 452 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file FIGradients.h
  3. * @brief feature images storing gradient information
  4. * @author Erik Rodner
  5. * @date 07/23/2008
  6. */
  7. #ifndef FIGradientsINCLUDE
  8. #define FIGradientsINCLUDE
  9. #include "vislearning/cbaselib/CachedExample.h"
  10. namespace OBJREC {
  11. class FIGradients {
  12. public:
  13. static void buildEOHMap (
  14. CachedExample *ce,
  15. int subsamplex,
  16. int subsampley,
  17. int numBins,
  18. bool usesigned );
  19. };
  20. } // namespace
  21. #endif