Subversion Repositories seema-scanner

Rev

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

Rev 162 Rev 167
Line 107... Line 107...
107
}
107
}
108
 
108
 
109
void SMReconstructionWorker::reconstructPointClouds(std::vector<SMFrameSequence> frameSequences){
109
void SMReconstructionWorker::reconstructPointClouds(std::vector<SMFrameSequence> frameSequences){
110
 
110
 
111
    // Process sequentially
111
    // Process sequentially
112
    for(int i=0; i<frameSequences.size(); i++){
112
    for(unsigned int i=0; i<frameSequences.size(); i++){
113
        reconstructPointCloud(frameSequences[i]);
113
        reconstructPointCloud(frameSequences[i]);
114
    }
114
    }
115
 
115
 
116
}
116
}
117
 
117