Subversion Repositories seema-scanner

Rev

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

Rev 41 Rev 42
Line 48... Line 48...
48
 
48
 
49
    updateCalibrationParameters();
49
    updateCalibrationParameters();
50
    //time.start();
50
    //time.start();
51
}
51
}
52
 
52
 
53
void SMPointCloudWidget::addPointCloud(PointCloudConstPtr _pointCloudPCL){
53
void SMPointCloudWidget::addPointCloud(PointCloudPtr _pointCloudPCL){
54
 
54
 
55
//    time.restart();
55
//    time.restart();
56
 
56
 
57
    pointCloudPCL = _pointCloudPCL;
57
    pointCloudPCL = _pointCloudPCL;
58
 
58
 
Line 66... Line 66...
66
    emit newPointCloudDisplayed();
66
    emit newPointCloudDisplayed();
67
 
67
 
68
//    std::cout << "PCL Widget: " << time.restart() << "ms" << std::endl;
68
//    std::cout << "PCL Widget: " << time.restart() << "ms" << std::endl;
69
}
69
}
70
 
70
 
71
void SMPointCloudWidget::updatePointCloud(PointCloudConstPtr _pointCloudPCL){
71
void SMPointCloudWidget::updatePointCloud(PointCloudPtr _pointCloudPCL){
72
 
72
 
73
//    time.restart();
73
//    time.restart();
74
 
74
 
75
    pointCloudPCL = _pointCloudPCL;
75
    pointCloudPCL = _pointCloudPCL;
76
 
76