1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
   | 
 
 
 
 
  #include <pcl/point_types.h> #include <pcl/io/pcd_io.h> #include <pcl/io/ply_io.h> #include <pcl/kdtree/kdtree_flann.h> #include <pcl/features/normal_3d.h> #include <pcl/surface/gp3.h> #include <pcl/visualization/pcl_visualizer.h> #include <boost/thread/thread.hpp> #include <fstream> #include <iostream> #include <stdio.h> #include <string.h> #include <string>
  int main (int argc, char** argv) { 	 	char tmpStr[100]; 	strcpy(tmpStr,argv[1]); 	char* pext = strrchr(tmpStr, '.'); 	std::string extply("ply"); 	std::string extpcd("pcd"); 	if(pext){ 		*pext='\0'; 		pext++; 	} 	std::string ext(pext); 	 	if (!((ext == extply)||(ext == extpcd))){ 		std::cout << "文件格式不支持!" << std::endl; 		std::cout << "支持文件格式:*.pcd和*.ply!" << std::endl; 		return(-1); 	}
  	   pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>) ;  	if (ext == extply){ 		if (pcl::io::loadPLYFile(argv[1] , *cloud) == -1){ 			PCL_ERROR("Could not read ply file!\n") ; 			return -1; 		} 	} 	else{ 		if (pcl::io::loadPCDFile(argv[1] , *cloud) == -1){ 			PCL_ERROR("Could not read pcd file!\n") ; 			return -1; 		} 	}
       pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> n;   pcl::PointCloud<pcl::Normal>::Ptr normals (new pcl::PointCloud<pcl::Normal>);   pcl::search::KdTree<pcl::PointXYZ>::Ptr tree (new pcl::search::KdTree<pcl::PointXYZ>);   tree->setInputCloud (cloud);   n.setInputCloud (cloud);   n.setSearchMethod (tree);   n.setKSearch (20);   n.compute (*normals);    
       pcl::PointCloud<pcl::PointNormal>::Ptr cloud_with_normals (new pcl::PointCloud<pcl::PointNormal>);   pcl::concatenateFields (*cloud, *normals, *cloud_with_normals);    	      pcl::search::KdTree<pcl::PointNormal>::Ptr tree2 (new pcl::search::KdTree<pcl::PointNormal>);   tree2->setInputCloud (cloud_with_normals);
       pcl::GreedyProjectionTriangulation<pcl::PointNormal> gp3; 	   pcl::PolygonMesh triangles;
     	   gp3.setSearchRadius (1.5f);    gp3.setMu (2.5f);    gp3.setMaximumNearestNeighbors (100);    gp3.setMaximumSurfaceAngle(M_PI/4);    gp3.setMinimumAngle(M_PI/18);    gp3.setMaximumAngle(2*M_PI/3);    gp3.setNormalConsistency(false); 
       gp3.setInputCloud(cloud_with_normals);   gp3.setSearchMethod(tree2);
  	   gp3.reconstruct (triangles); 	 	 	pcl::io::savePLYFile("result.ply", triangles);
          
  	   boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer (new pcl::visualization::PCLVisualizer ("3D Viewer"));   viewer->setBackgroundColor (0, 0, 0);    viewer->addPolygonMesh(triangles,"my");    viewer->addCoordinateSystem (1.0);    viewer->initCameraParameters ();   while (!viewer->wasStopped ()){     viewer->spinOnce (100);     boost::this_thread::sleep (boost::posix_time::microseconds (100000));   } 	   return (0); }
 
  |