Export CLI: added print info for coloring mesh step

This commit is contained in:
matlabbe
2021-05-10 15:19:48 -04:00
parent 854a52c6a5
commit a11492943a

View File

@@ -1108,6 +1108,7 @@ int main(int argc, char * argv[])
if(mesh->polygons.size()) if(mesh->polygons.size())
{ {
printf("Mesh color transfer...\n");
rtabmap::util3d::denseMeshPostProcessing<pcl::PointXYZRGBNormal>( rtabmap::util3d::denseMeshPostProcessing<pcl::PointXYZRGBNormal>(
mesh, mesh,
0.0f, 0.0f,
@@ -1117,6 +1118,7 @@ int main(int argc, char * argv[])
!texture, !texture,
doClean, doClean,
200); 200);
printf("Mesh color transfer... done (%fs).\n", timer.ticks());
if(!texture) if(!texture)
{ {