Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00046 #include <iostream>
00047 #include <pcl/io/pcd_io.h>
00048 #include <pcl/point_types.h>
00049
00051
00057 std::vector<int>
00058 parseFileExtensionArgument (int argc, char** argv, std::string extension)
00059 {
00060 std::vector<int> indices;
00061 for (int i = 1; i < argc; ++i)
00062 {
00063 std::string fname = std::string (argv[i]);
00064
00065
00066 if (fname.size () <= 4)
00067 continue;
00068
00069
00070 std::transform (fname.begin (), fname.end (), fname.begin (), tolower);
00071 std::transform (extension.begin (), extension.end (), extension.begin (), tolower);
00072
00073
00074 std::string::size_type it;
00075 if ((it = fname.find (extension)) != std::string::npos)
00076 {
00077
00078 if ((extension.size () - (fname.size () - it)) == 0)
00079 indices.push_back (i);
00080 }
00081 }
00082 return (indices);
00083 }
00084
00085
00086
00087 int
00088 main (int argc, char** argv)
00089 {
00090 if (argc < 2)
00091 {
00092 std::cerr << "Syntax is: " << argv[0] << " <filename 1..N.pcd>" << std::endl;
00093 std::cerr << "Result will be saved to output.pcd" << std::endl;
00094 return (-1);
00095 }
00096
00097 std::vector<int> file_indices = parseFileExtensionArgument (argc, argv, ".pcd");
00098
00099 pcl::PointCloud<pcl::PointXYZ> cloud_all;
00100 for (size_t i = 0; i < file_indices.size (); ++i)
00101 {
00102
00103 pcl::PointCloud<pcl::PointXYZ> cloud;
00104 pcl::io::loadPCDFile (argv[file_indices[i]], cloud);
00105 cloud_all += cloud;
00106 }
00107
00108 pcl::io::savePCDFile ("output.pcd", cloud_all);
00109
00110 return (0);
00111 }
00112