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 62... Line 62...
62
 
62
 
63
        void on_actionExport_Sets_triggered();
63
        void on_actionExport_Sets_triggered();
64
 
64
 
65
        void on_actionExport_Sequences_triggered();
65
        void on_actionExport_Sequences_triggered();
66
 
66
 
-
 
67
        void on_reconstructButton_clicked();
-
 
68
        void onNewPointCloud(pcl::PointCloud<pcl::PointXYZRGB>::ConstPtr pc);
-
 
69
 
67
private:
70
private:
68
        Ui::SMScanner *ui;
71
        Ui::SMScanner *ui;
69
 
72
 
70
        QSettings settings;
73
        QSettings settings;
71
 
74
 
Line 80... Line 83...
80
        SMReconstructionWorker *reconstructionWorker;
83
        SMReconstructionWorker *reconstructionWorker;
81
        QThread *reconstructionWorkerThread;
84
        QThread *reconstructionWorkerThread;
82
 
85
 
83
        std::vector< SMCalibrationSet > calibrationData;
86
        std::vector< SMCalibrationSet > calibrationData;
84
        std::vector< SMFrameSequence > captureData;
87
        std::vector< SMFrameSequence > captureData;
85
        std::vector< pcl::PointCloud<pcl::PointXYZRGB>::Ptr > pointClouds;
88
        std::vector< SMPointCloud > pointCloudData;
86
 
89
 
87
        bool calibrationReviewMode;
90
        bool calibrationReviewMode;
88
        bool captureReviewMode;
91
        bool captureReviewMode;
89
};
92
};
90
 
93