Skip to content

Commit

Permalink
remove old printf
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvano Galliani committed Jan 20, 2016
1 parent f8f9179 commit 284f60b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -834,16 +834,16 @@ static int runFusibile (int argc,
#define get_pow2_norm(x,y) (pow2(x)+pow2(y))

runcuda(*gs, pc_list, numSelViews);
Mat_<Vec3f> norm0 = Mat::zeros ( img_grayscale[0].rows, img_grayscale[0].cols, CV_32FC3 );
//Mat_<Vec3f> norm0 = Mat::zeros ( img_grayscale[0].rows, img_grayscale[0].cols, CV_32FC3 );
Mat_<float> distImg;
char plyFile[256];
sprintf ( plyFile, "%s/final3d_model.ply", output_folder);
printf("Writing ply file %s\n", plyFile);
//storePlyFileAsciiPointCloud ( plyFile, pc_list, inputData[0].cam, distImg);
storePlyFileBinaryPointCloud ( plyFile, pc_list, distImg);
char xyzFile[256];
sprintf ( xyzFile, "%s/final3d_model.xyz", output_folder);
printf("Writing ply file %s\n", xyzFile);
//char xyzFile[256];
//sprintf ( xyzFile, "%s/final3d_model.xyz", output_folder);
//printf("Writing ply file %s\n", xyzFile);
//storeXYZPointCloud ( xyzFile, pc_list, inputData[0].cam, distImg);

return 0;
Expand Down

0 comments on commit 284f60b

Please sign in to comment.