Subversion Repositories seema-scanner

Rev

Rev 36 | Rev 42 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36 Rev 41
Line 2... Line 2...
2
#ifndef SMReconstructionWorker_H
2
#ifndef SMReconstructionWorker_H
3
#define SMReconstructionWorker_H
3
#define SMReconstructionWorker_H
4
 
4
 
5
#include "SMTypes.h"
5
#include "SMTypes.h"
6
#include "SMCalibrationParameters.h"
6
#include "SMCalibrationParameters.h"
7
#include "Codec.h"
7
#include "Algorithm.h"
8
 
8
 
9
#include <QObject>
9
#include <QObject>
10
#include <QTime>
10
#include <QTime>
11
 
11
 
12
#include <opencv2/opencv.hpp>
12
#include <opencv2/opencv.hpp>
Line 30... Line 30...
30
    private:
30
    private:
31
        void triangulate(std::vector<cv::Point2f>& q0, std::vector<cv::Point2f>& q1, std::vector<cv::Point3f> &Q);
31
        void triangulate(std::vector<cv::Point2f>& q0, std::vector<cv::Point2f>& q1, std::vector<cv::Point3f> &Q);
32
 
32
 
33
    private:
33
    private:
34
        SMCalibrationParameters calibration;
34
        SMCalibrationParameters calibration;
35
        CodecDir dir;
35
        CodingDir dir;
36
        QTime time;
36
        QTime time;
37
        Decoder *decoder;
37
        Algorithm *algorithm;
38
        cv::Mat lensMap0Horz, lensMap0Vert, lensMap1Horz, lensMap1Vert;
38
        cv::Mat lensMap0Horz, lensMap0Vert, lensMap1Horz, lensMap1Vert;
39
};
39
};
40
 
40
 
41
#endif
41
#endif