Skip to content

Commit 110885e

Browse files
author
nils-hamel
committed
Re-activating radius option for sparse and dense filtering
1 parent a20b086 commit 110885e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/framework-database.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,7 @@ void Database::filterRadialRange(int pipeState){ /* param not needed */
593593
# pragma omp parallel for schedule(dynamic)
594594
for(unsigned int i=rangeSlow; i<=rangeShigh; i++){
595595
if(structures[i]->getState()>=stateStructure){
596-
//structures[i]->filterRadialRange(0.,25.,rangeVlow);
597-
structures[i]->filterRadialRange(0.,50.,rangeVlow);
596+
structures[i]->filterRadialRange(0.,configRadius,rangeVlow);
598597
}
599598
}
600599

src/framework.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ int main(int argc, char ** argv){
287287

288288
}
289289

290-
// Major iteration exportation : model, odometry and transformation
290+
// Major iteration exportation : model, odometry, transformation and constraint
291291
database.exportStructure (yamlExport["path"].as<std::string>(),yamlFrontend["type"].as<std::string>(),loopMajor,yamlExport["group"].as<unsigned int>());
292292
database.exportPosition (yamlExport["path"].as<std::string>(),yamlFrontend["type"].as<std::string>(),loopMajor);
293293
database.exportTransformation(yamlExport["path"].as<std::string>(),yamlFrontend["type"].as<std::string>(),loopMajor);

0 commit comments

Comments
 (0)