17 lines
440 B
C++
17 lines
440 B
C++
#ifndef H_Slicer360ToPerspective
|
|
#define H_Slicer360ToPerspective
|
|
|
|
#include <Camera.hpp>
|
|
|
|
/// @brief This class encapsulates the algorithms to convert a 360-degree image to a perspective image.
|
|
class Slicer360ToPerspective {
|
|
public:
|
|
Slicer360ToPerspective();
|
|
|
|
|
|
|
|
private:
|
|
std::vector<Camera> cameras;//!< A vector of cameras that are used to convert the 360-degree image to perspective images.
|
|
};
|
|
|
|
#endif
|