EquirectangularToHead.h 518 B

123456789101112131415161718192021222324
  1. // EquirectangularToHead.h
  2. // Transfers the x_head, y_head coordinates to the x,y
  3. #ifndef __EQUIRECTANGULARTOHEAD_H__
  4. #define __EQUIRECTANGULARTOHEAD_H__
  5. #include "../arffHelper/Arff.h"
  6. class EquirectangularToHead
  7. {
  8. public:
  9. EquirectangularToHead(Arff *pArff);
  10. ~EquirectangularToHead();
  11. unique_ptr<Arff> Convert();
  12. ///< Populates the x,y attributes of the returned ARFF with the x_head,
  13. ///< y_head of the input ARFF.
  14. private:
  15. Arff *m_pArff;
  16. };
  17. #endif /*__EQUIRECTANGULARTOHEAD_H__*/