Subversion Repositories seema-scanner

Rev

Rev 23 | Rev 26 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25 jakw 1
#ifndef SMCalibrator_H
2
#define SMCalibrator_H
22 jakw 3
 
25 jakw 4
#include <QObject>
22 jakw 5
 
25 jakw 6
#include "SMTypes.h"
22 jakw 7
 
8
namespace Ui {
25 jakw 9
    class SMCalibrator;
22 jakw 10
}
11
 
25 jakw 12
class SMCalibrator : public QObject{
22 jakw 13
    Q_OBJECT
14
 
15
    public:
25 jakw 16
        explicit SMCalibrator(QObject *parent = 0){}
17
        ~SMCalibrator(){}
22 jakw 18
    public slots:
25 jakw 19
        void performCalibration(std::vector< CalibrationSet > calibrationData);
22 jakw 20
    private slots:
25 jakw 21
    signals:
22
        void newFrameProcessed(int idx);
23
        void done();
22 jakw 24
 
25 jakw 25
    private:
22 jakw 26
 
27
};
28
 
25 jakw 29
#endif // SMCalibrator_H