Rev 25 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef SMTYPES_H
#define SMTYPES_H
#include <opencv2/opencv.hpp>
struct CalibrationSet {
cv::Mat frame0;
cv::Mat frame1;
float rotationAngle;
CalibrationSet(): frame0(cv::Mat()), frame1(cv::Mat()), rotationAngle(-1){}
};
struct FrameSequence {
std::vector<cv::Mat> frames0;
std::vector<cv::Mat> frames1;
std::string codecID;
float rotationAngle;
FrameSequence(): frames0(cv::Mat()), frames1(cv::Mat()), codecID(""), rotationAngle(-1){}
};
#endif // SMTYPES_H