Subversion Repositories seema-scanner

Rev

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

Rev 135 Rev 148
Line 27... Line 27...
27
        unsigned int frameWidth;
27
        unsigned int frameWidth;
28
 
28
 
29
        cv::Matx33f K0; // intrinsic camera matrix
29
        cv::Matx33f K0; // intrinsic camera matrix
30
        cv::Vec<float, 5> k0; // distortion coefficients
30
        cv::Vec<float, 5> k0; // distortion coefficients
31
        double cam0_error; // overall reprojection error
31
        double cam0_error; // overall reprojection error
-
 
32
        std::vector<float> cam0_errors_per_view; // per view reprojection errors
32
 
33
 
33
        cv::Matx33f K1;
34
        cv::Matx33f K1;
34
        cv::Vec<float, 5> k1;
35
        cv::Vec<float, 5> k1;
35
        double cam1_error;
36
        double cam1_error;
36
 
37
 
37
        cv::Matx33f R1; // extrinsic rotation matrix camera 1
38
        cv::Matx33f R1; // extrinsic rotation matrix camera 1
38
        cv::Vec3f   T1; // extrinsic translation vector camera 1
39
        cv::Vec3f   T1; // extrinsic translation vector camera 1
39
        double stereo_error; // stereo calibration reprojection error
40
        double stereo_error; // stereo calibration reprojection error
-
 
41
        std::vector<float> cam1_errors_per_view; // per view reprojection errors
40
 
42
 
41
        cv::Matx33f Rr; // extrinsic rotation rotation stage
43
        cv::Matx33f Rr; // extrinsic rotation rotation stage
42
        cv::Vec3f   Tr; // extrinsic translation vector rotation stage
44
        cv::Vec3f   Tr; // extrinsic translation vector rotation stage
43
 
45
 
44
        cv::Matx33f E; // essential matrix
46
        cv::Matx33f E; // essential matrix
45
        cv::Matx33f F; // fundamental matrix
47
        cv::Matx33f F; // fundamental matrix
46
 
48
 
-
 
49
 
47
        void print();
50
        void print();
48
        void exportToXML(QString fileName);
51
        void exportToXML(QString fileName);
49
        void importFromXML(QString fileName);
52
        void importFromXML(QString fileName);
50
};
53
};
51
 
54