Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit a49cddf

Browse files
author
Daniel
authored
Update main.cpp
1 parent 3a7f1e6 commit a49cddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ void init(int argc, char** argv,bool show,std::string extension){
264264

265265
int octreeResolution = std::atoi(octreeResolution_str.c_str());
266266
float eps = std::atof(eps_str.c_str());
267-
int minPtsAux_ = std::atof(minPtsAux_str.c_str());
268-
int minPts = std::atof(minPts_str.c_str());
267+
int minPtsAux_ = std::atoi(minPtsAux_str.c_str());
268+
int minPts = std::atoi(minPts_str.c_str());
269269

270270
if(minPts < 3){
271271
pcl::console::print_error("\nminPts must be >= 3! \n");

0 commit comments

Comments
 (0)