Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

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__*/