Rev 23 | Rev 26 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef SMCalibrator_H
#define SMCalibrator_H
#include <QObject>
#include "SMTypes.h"
namespace Ui {
class SMCalibrator;
}
class SMCalibrator : public QObject{
Q_OBJECT
public:
explicit SMCalibrator(QObject *parent = 0){}
~SMCalibrator(){}
public slots:
void performCalibration(std::vector< CalibrationSet > calibrationData);
private slots:
signals:
void newFrameProcessed(int idx);
void done();
private:
};
#endif // SMCalibrator_H