Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.62 KB | None | 0 0
  1. apps/mesher.cpp:20: pcl::PointCloud<pcl::PointXYZRGB>::Ptr inputCloud (new pcl::PointCloud<pcl::PointXYZRGB>);
  2. apps/mesher.cpp:22: if (pcl::io::loadPCDFile<pcl::PointXYZRGB> (argv[1], *inputCloud) == -1) //* load the file
  3. apps/segment.cpp:162: pcl::PointXYZRGB min_p, max_p;
  4. apps/segment.cpp:163: pcl::getMinMax3D(*masterCloud, min_p, max_p);
  5. apps/segment.cpp:168: pcl::PointCloud<pcl::PointXYZRGB>::Ptr immutableCloud(
  6. apps/segment.cpp:169: new pcl::PointCloud<pcl::PointXYZRGB>);
  7. apps/segment.cpp:170: pcl::PointCloud<pcl::PointXYZRGB>::Ptr segPath(
  8. apps/segment.cpp:171: new pcl::PointCloud<pcl::PointXYZRGB>);
  9. apps/segment.cpp:202: pcl::PointXYZRGB temp_pt;
  10. apps/segment.cpp:234: pcl::PointCloud<pcl::PointXYZRGB> mutableCloud;
  11. apps/VC/CMesh.h:48: std::vector< pcl::PointXYZRGBNormal > fPoints;
  12. apps/VC/CWindow.h:161: pcl::PointCloud< pcl::PointXYZRGB > fMasterCloud; // master cloud, the one and only point cloud
  13. apps/VC/CWindow.h:164: pcl::PointCloud< pcl::PointXYZRGB > fUpperPart;
  14. apps/VC/CWindow.h:165: pcl::PointCloud< pcl::PointXYZRGB > fLowerPart;
  15. apps/VC/CWindow.cpp:405: // how to create pcl::PointCloud::Ptr from a pcl::PointCloud?
  16. apps/VC/CWindow.cpp:407: fLowerPart = volcart::segmentation::structureTensorParticleSim( pcl::PointCloud< pcl::PointXYZRGB >::Ptr( new pcl::PointCloud< pcl::PointXYZRGB >( fLowerPart )),
  17. apps/VC/CWindow.cpp:478: pcl::PointXYZRGB min_p, max_p;
  18. apps/VC/CWindow.cpp:479: pcl::getMinMax3D( fMasterCloud, min_p, max_p );
  19. apps/VC/CWindow.cpp:546: pcl::PointXYZRGB point;
  20. apps/VC/CWindow.cpp:547: pcl::PointCloud< pcl::PointXYZRGB > aPathCloud;
  21. apps/VC/CWindow.cpp:667: if (fVpkg->saveMesh(pcl::PointCloud<pcl::PointXYZRGB>::Ptr(new pcl::PointCloud<pcl::PointXYZRGB>(fMasterCloud))) != EXIT_SUCCESS) {
  22. apps/VC/CWindow.cpp:864: pcl::PointXYZRGB tempPt;
  23. common/shapes/ShapePrimitive.cpp:88: pcl::PointCloud<pcl::PointXYZ> ShapePrimitive::pointCloudXYZ(bool noisify){
  24. common/shapes/ShapePrimitive.cpp:90: pcl::PointCloud<pcl::PointXYZ> output;
  25. common/shapes/ShapePrimitive.cpp:97: pcl::PointXYZ point;
  26. common/shapes/ShapePrimitive.cpp:123: pcl::PointCloud<pcl::PointXYZRGB> ShapePrimitive::pointCloudXYZRGB(){
  27. common/shapes/ShapePrimitive.cpp:125: pcl::PointCloud<pcl::PointXYZRGB> output;
  28. common/shapes/ShapePrimitive.cpp:129: pcl::PointXYZRGB point;
  29. common/shapes/ShapePrimitive.cpp:159: pcl::PointCloud<pcl::PointNormal> ShapePrimitive::pointCloudNormal(){
  30. common/shapes/ShapePrimitive.cpp:161: pcl::PointCloud<pcl::PointNormal> output;
  31. common/shapes/ShapePrimitive.cpp:164: pcl::PointNormal point;
  32. common/shapes/ShapePrimitive.h:30: pcl::PointCloud<pcl::PointXYZ> pointCloudXYZ(bool noisify = true); //resamplePointCloud
  33. common/shapes/ShapePrimitive.h:31: pcl::PointCloud<pcl::PointNormal> pointCloudNormal(); //poissonRecon, greedyProjMeshing
  34. common/shapes/ShapePrimitive.h:32: pcl::PointCloud<pcl::PointXYZRGB> pointCloudXYZRGB(); //for orderedPCDMesher
  35. examples/greedyProjectionMeshingExample.cpp:30: pcl::PointCloud<pcl::PointNormal> in_PlanePointNormalCloud = Plane.pointCloudNormal();
  36. examples/greedyProjectionMeshingExample.cpp:31: pcl::PointCloud<pcl::PointNormal> in_CubePointNormalCloud = Cube.pointCloudNormal();
  37. examples/greedyProjectionMeshingExample.cpp:32: pcl::PointCloud<pcl::PointNormal> in_ArchPointNormalCloud = Arch.pointCloudNormal();
  38. examples/greedyProjectionMeshingExample.cpp:33: pcl::PointCloud<pcl::PointNormal> in_SpherePointNormalCloud = Sphere.pointCloudNormal();
  39. examples/greedyProjectionMeshingExample.cpp:34: pcl::PointCloud<pcl::PointNormal> in_ConePointNormalCloud = Cone.pointCloudNormal();
  40. examples/greedyProjectionMeshingExample.cpp:37: pcl::PointCloud<pcl::PointNormal>::Ptr in_PlanePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  41. examples/greedyProjectionMeshingExample.cpp:38: pcl::PointCloud<pcl::PointNormal>::Ptr in_CubePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  42. examples/greedyProjectionMeshingExample.cpp:39: pcl::PointCloud<pcl::PointNormal>::Ptr in_ArchPointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  43. examples/greedyProjectionMeshingExample.cpp:40: pcl::PointCloud<pcl::PointNormal>::Ptr in_SpherePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  44. examples/greedyProjectionMeshingExample.cpp:41: pcl::PointCloud<pcl::PointNormal>::Ptr in_ConePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  45. examples/greedyProjectionMeshingExample.cpp:50: pcl::PolygonMesh out_PlanePolyMesh = greedyProjectionMeshing(in_PlanePointNormalCloudPtr, 100, 2.0, 2.5);
  46. examples/greedyProjectionMeshingExample.cpp:51: pcl::PolygonMesh out_CubePolyMesh = greedyProjectionMeshing(in_CubePointNormalCloudPtr, 100, 2.0, 2.5);
  47. examples/greedyProjectionMeshingExample.cpp:52: pcl::PolygonMesh out_ArchPolyMesh = greedyProjectionMeshing(in_ArchPointNormalCloudPtr, 100, 2.0, 2.5);
  48. examples/greedyProjectionMeshingExample.cpp:53: pcl::PolygonMesh out_SpherePolyMesh = greedyProjectionMeshing(in_SpherePointNormalCloudPtr, 100, 2.0, 2.5);
  49. examples/greedyProjectionMeshingExample.cpp:54: pcl::PolygonMesh out_ConePolyMesh = greedyProjectionMeshing(in_ConePointNormalCloudPtr, 100, 2.0, 2.5);
  50. examples/greedyProjectionMeshingExample.cpp:58: pcl::io::saveOBJFile ( "PlaneGreedyProjectionMeshing.obj", out_PlanePolyMesh);
  51. examples/greedyProjectionMeshingExample.cpp:59: pcl::io::saveOBJFile ( "CubeGreedyProjectionMeshing.obj", out_CubePolyMesh);
  52. examples/greedyProjectionMeshingExample.cpp:60: pcl::io::saveOBJFile ( "ArchGreedyProjectionMeshing.obj", out_ArchPolyMesh);
  53. examples/greedyProjectionMeshingExample.cpp:61: pcl::io::saveOBJFile ( "SphereGreedyProjectionMeshing.obj", out_SpherePolyMesh);
  54. examples/greedyProjectionMeshingExample.cpp:62: pcl::io::saveOBJFile ( "ConeGreedyProjectionMeshing.obj", out_ConePolyMesh);
  55. examples/orderedPCDMesherExample.cpp:25: pcl::PointCloud <pcl::PointXYZRGB> PlanePointCloud = Plane.pointCloudXYZRGB();
  56. examples/orderedPCDMesherExample.cpp:26: pcl::PointCloud <pcl::PointXYZRGB> CubePointCloud = Cube.pointCloudXYZRGB();
  57. examples/orderedPCDMesherExample.cpp:27: pcl::PointCloud <pcl::PointXYZRGB> ArchPointCloud = Arch.pointCloudXYZRGB();
  58. examples/orderedPCDMesherExample.cpp:28: pcl::PointCloud <pcl::PointXYZRGB> SpherePointCloud = Sphere.pointCloudXYZRGB();
  59. examples/orderedPCDMesherExample.cpp:29: pcl::PointCloud <pcl::PointXYZRGB> ConePointCloud = Cone.pointCloudXYZRGB();
  60. examples/orderedPCDMesherExample.cpp:33: pcl::PointCloud<pcl::PointXYZRGB>::Ptr PointerToPlaneCloud(new pcl::PointCloud <pcl::PointXYZRGB>);
  61. examples/orderedPCDMesherExample.cpp:34: pcl::PointCloud<pcl::PointXYZRGB>::Ptr PointerToCubeCloud(new pcl::PointCloud <pcl::PointXYZRGB>);
  62. examples/orderedPCDMesherExample.cpp:35: pcl::PointCloud<pcl::PointXYZRGB>::Ptr PointerToArchCloud(new pcl::PointCloud <pcl::PointXYZRGB>);
  63. examples/orderedPCDMesherExample.cpp:36: pcl::PointCloud<pcl::PointXYZRGB>::Ptr PointerToSphereCloud(new pcl::PointCloud <pcl::PointXYZRGB>);
  64. examples/orderedPCDMesherExample.cpp:37: pcl::PointCloud<pcl::PointXYZRGB>::Ptr PointerToConeCloud(new pcl::PointCloud <pcl::PointXYZRGB>);
  65. examples/resamplePointCloudExample.cpp:17:double CalculateRadius(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud);
  66. examples/resamplePointCloudExample.cpp:28: pcl::PointCloud <pcl::PointXYZ> PlaneCloudXYZ = Plane.pointCloudXYZ();
  67. examples/resamplePointCloudExample.cpp:29: pcl::PointCloud <pcl::PointXYZ> CubeCloudXYZ = Cube.pointCloudXYZ();
  68. examples/resamplePointCloudExample.cpp:30: pcl::PointCloud <pcl::PointXYZ> ArchCloudXYZ = Arch.pointCloudXYZ();
  69. examples/resamplePointCloudExample.cpp:31: pcl::PointCloud <pcl::PointXYZ> SphereCloudXYZ = Sphere.pointCloudXYZ();
  70. examples/resamplePointCloudExample.cpp:32: pcl::PointCloud <pcl::PointXYZ> ConeCloudXYZ = Cone.pointCloudXYZ();
  71. examples/resamplePointCloudExample.cpp:35: pcl::PointCloud<pcl::PointXYZ>::Ptr PlaneCloudPtr (new pcl::PointCloud<pcl::PointXYZ>);
  72. examples/resamplePointCloudExample.cpp:36: pcl::PointCloud<pcl::PointXYZ>::Ptr CubeCloudPtr (new pcl::PointCloud<pcl::PointXYZ>);
  73. examples/resamplePointCloudExample.cpp:37: pcl::PointCloud<pcl::PointXYZ>::Ptr ArchCloudPtr (new pcl::PointCloud<pcl::PointXYZ>);
  74. examples/resamplePointCloudExample.cpp:38: pcl::PointCloud<pcl::PointXYZ>::Ptr SphereCloudPtr (new pcl::PointCloud<pcl::PointXYZ>);
  75. examples/resamplePointCloudExample.cpp:39: pcl::PointCloud<pcl::PointXYZ>::Ptr ConeCloudPtr (new pcl::PointCloud<pcl::PointXYZ>);
  76. examples/resamplePointCloudExample.cpp:49: pcl::PointCloud <pcl::PointNormal> out_PlaneResampledPointCloud;
  77. examples/resamplePointCloudExample.cpp:50: pcl::PointCloud <pcl::PointNormal> out_CubeResampledPointCloud;
  78. examples/resamplePointCloudExample.cpp:51: pcl::PointCloud <pcl::PointNormal> out_ArchResampledPointCloud;
  79. examples/resamplePointCloudExample.cpp:52: pcl::PointCloud <pcl::PointNormal> out_SphereResampledPointCloud;
  80. examples/resamplePointCloudExample.cpp:53: pcl::PointCloud <pcl::PointNormal> out_ConeResampledPointCloud;
  81. examples/resamplePointCloudExample.cpp:63: pcl::io::savePCDFile("PlaneResamplePointCloudExample.pcd", out_PlaneResampledPointCloud);
  82. examples/resamplePointCloudExample.cpp:64: pcl::io::savePCDFile("CubeResamplePointCloudExample.pcd", out_CubeResampledPointCloud);
  83. examples/resamplePointCloudExample.cpp:65: pcl::io::savePCDFile("ArchResamplePointCloudExample.pcd", out_ArchResampledPointCloud);
  84. examples/resamplePointCloudExample.cpp:66: pcl::io::savePCDFile("SphereResamplePointCloudExample.pcd", out_SphereResampledPointCloud);
  85. examples/resamplePointCloudExample.cpp:67: pcl::io::savePCDFile("ConeResamplePointCloudExample.pcd", out_ConeResampledPointCloud);
  86. examples/resamplePointCloudExample.cpp:80:double CalculateRadius(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud){
  87. examples/VerifyStructureTensor.cpp:13: const pcl::PointCloud<pcl::PointXYZRGBNormal>& cloud, const int32_t width,
  88. examples/VerifyStructureTensor.cpp:15:pcl::PointCloud<pcl::PointXYZRGBNormal> cloudFromSlice(VolumePkg& v,
  89. examples/VerifyStructureTensor.cpp:93:pcl::PointCloud<pcl::PointXYZRGBNormal> cloudFromSlice(VolumePkg& v,
  90. examples/VerifyStructureTensor.cpp:97: auto cloud = pcl::PointCloud<pcl::PointXYZRGBNormal>();
  91. examples/VerifyStructureTensor.cpp:98: if (pcl::io::loadPCDFile(pathString, cloud) == -1) {
  92. examples/VerifyStructureTensor.cpp:106: const pcl::PointCloud<pcl::PointXYZRGBNormal>& cloud, const int32_t width,
  93. meshing/greedyProjectionMeshing.cpp:14: pcl::PolygonMesh greedyProjectionMeshing ( pcl::PointCloud<pcl::PointNormal>::Ptr input, unsigned maxNeighbors, double radius, double radiusMultiplier ) {
  94. meshing/greedyProjectionMeshing.cpp:17: pcl::search::KdTree<pcl::PointNormal>::Ptr input_tree (new pcl::search::KdTree<pcl::PointNormal>() );
  95. meshing/greedyProjectionMeshing.cpp:21: pcl::GreedyProjectionTriangulation<pcl::PointNormal> greedyProjection;
  96. meshing/greedyProjectionMeshing.cpp:22: pcl::PolygonMesh output;
  97. meshing/greedyProjectionMeshing.h:16: pcl::PolygonMesh greedyProjectionMeshing ( pcl::PointCloud<pcl::PointNormal>::Ptr input, unsigned maxNeighbors = 100, double radius = 2.0, double radiusMultiplier = 2.5 );
  98. meshing/orderedPCDMesher.h:16: int orderedPCDMesher(pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud, std::string outFile);
  99. meshing/orderedPCDMesher.cpp:19: void add_vertex(pcl::PointXYZRGB);
  100. meshing/orderedPCDMesher.cpp:30: int orderedPCDMesher(pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud, std::string outFile){
  101. meshing/orderedPCDMesher.cpp:33: std::vector< std::vector< pcl::PointXYZRGB > > VoV;
  102. meshing/orderedPCDMesher.cpp:41: std::vector<pcl::PointXYZRGB> current;
  103. meshing/orderedPCDMesher.cpp:185: void Mesh::add_vertex(pcl::PointXYZRGB point) {
  104. meshing/resamplePointCloud.cpp:10: pcl::PointCloud<pcl::PointNormal> resamplePointCloud ( pcl::PointCloud<pcl::PointXYZ>::Ptr input, double radius ) {
  105. meshing/resamplePointCloud.cpp:12: pcl::search::KdTree<pcl::PointXYZ>::Ptr input_tree ( new pcl::search::KdTree<pcl::PointXYZ>() );
  106. meshing/resamplePointCloud.cpp:14: pcl::PointCloud<pcl::PointNormal> mls_results;
  107. meshing/resamplePointCloud.cpp:16: pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal> mls_mesher;
  108. meshing/resamplePointCloud.cpp:31:// mls_mesher.setUpsamplingMethod (pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal>::NONE);
  109. meshing/resamplePointCloud.cpp:34:// mls_mesher.setUpsamplingMethod (pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal>::SAMPLE_LOCAL_PLANE);
  110. meshing/resamplePointCloud.cpp:39:// mls_mesher.setUpsamplingMethod (pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal>::RANDOM_UNIFORM_DENSITY);
  111. meshing/resamplePointCloud.cpp:43: mls_mesher.setUpsamplingMethod (pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal>::VOXEL_GRID_DILATION);
  112. meshing/resamplePointCloud.cpp:54: pcl::removeNaNFromPointCloud (mls_results, mls_results, indices);
  113. meshing/resamplePointCloud.cpp:56: pcl::removeNaNNormalsFromPointCloud (mls_results, mls_results, indices);
  114. meshing/resamplePointCloud.h:18: pcl::PointCloud<pcl::PointNormal> resamplePointCloud ( pcl::PointCloud<pcl::PointXYZ>::Ptr input, double radius = 2.0 );
  115. segmentation/localResliceParticleSim/localResliceParticleSim.h:21: pcl::PointCloud<pcl::PointXYZRGB> segmentPath(
  116. segmentation/localResliceParticleSim/localResliceParticleSim.h:22: const pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud,
  117. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:18:pcl::PointCloud<pcl::PointXYZRGB> exportAsPCD(
  118. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:21:pcl::PointCloud<pcl::PointXYZRGB> LocalResliceSegmentation::segmentPath(
  119. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:22: const pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud,
  120. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:53: return pcl::PointCloud<pcl::PointXYZRGB>();
  121. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:334:pcl::PointCloud<pcl::PointXYZRGB> exportAsPCD(
  122. segmentation/localResliceParticleSim/localResliceParticleSim.cpp:339: pcl::PointCloud<pcl::PointXYZRGB> cloud(cols, rows);
  123. segmentation/structureTensorParticleSim/chain.h:22: Chain(pcl::PointCloud<pcl::PointXYZRGB>::Ptr segPath, VolumePkg& volpkg, double gravity_scale, int threshold, int endOffset, double spring_constant_k = -0.5);
  124. segmentation/structureTensorParticleSim/chain.h:27: pcl::PointCloud<pcl::PointXYZRGB> orderedPCD();
  125. segmentation/structureTensorParticleSim/chain.cpp:4:Chain::Chain(pcl::PointCloud<pcl::PointXYZRGB>::Ptr segPath, VolumePkg& volpkg, double gravity_scale, int threshold, int endOffset, double spring_constant_k ) : _volpkg(volpkg){
  126. segmentation/structureTensorParticleSim/chain.cpp:8: for(pcl::PointCloud<pcl::PointXYZRGB>::iterator path_it = segPath->begin(); path_it != segPath->end(); ++path_it){
  127. segmentation/structureTensorParticleSim/chain.cpp:126:pcl::PointCloud<pcl::PointXYZRGB> Chain::orderedPCD() {
  128. segmentation/structureTensorParticleSim/chain.cpp:128: std::vector<pcl::PointXYZRGB> storage_row;
  129. segmentation/structureTensorParticleSim/chain.cpp:130: pcl::PointXYZRGB point;
  130. segmentation/structureTensorParticleSim/chain.cpp:137: std::vector<std::vector<pcl::PointXYZRGB> > storage;
  131. segmentation/structureTensorParticleSim/chain.cpp:153: pcl::PointXYZRGB point;
  132. segmentation/structureTensorParticleSim/chain.cpp:163: pcl::PointCloud<pcl::PointXYZRGB> cloud;
  133. segmentation/structureTensorParticleSim/structureTensorParticleSim.cpp:11: pcl::PointCloud <pcl::PointXYZRGB> structureTensorParticleSim(pcl::PointCloud<pcl::PointXYZRGB>::Ptr segPath, VolumePkg& volpkg, double gravity_scale, int threshold, int endOffset) {
  134. segmentation/structureTensorParticleSim/structureTensorParticleSim.h:19: pcl::PointCloud<pcl::PointXYZRGB> structureTensorParticleSim(pcl::PointCloud<pcl::PointXYZRGB>::Ptr segPath, VolumePkg& volpkg, double gravity_scale = 0.5, int threshold = 1, int endOffset = -1);
  135. testing/meshing/greedyProjectionMeshingTest.cpp:36: * - OBJ file to be loaded in as a PCL::PolygonMesh *
  136. testing/meshing/greedyProjectionMeshingTest.cpp:66: pcl::PointCloud<pcl::PointNormal>::Ptr _in_PlanePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  137. testing/meshing/greedyProjectionMeshingTest.cpp:73: pcl::io::loadOBJFile("PlaneGreedyProjectionMeshing.obj", _in_SavedPlanePolygonMesh);
  138. testing/meshing/greedyProjectionMeshingTest.cpp:75: pcl::fromPCLPointCloud2(_out_FixturePlanePolygonMesh.cloud, _out_FixturePlanePointCloud);
  139. testing/meshing/greedyProjectionMeshingTest.cpp:76: pcl::fromPCLPointCloud2(_in_SavedPlanePolygonMesh.cloud, _out_SavedPlanePointCloud);
  140. testing/meshing/greedyProjectionMeshingTest.cpp:82: pcl::PointCloud<pcl::PointNormal> _in_PlanePointNormalCloud;
  141. testing/meshing/greedyProjectionMeshingTest.cpp:83: pcl::PolygonMesh _out_FixturePlanePolygonMesh, _in_SavedPlanePolygonMesh;
  142. testing/meshing/greedyProjectionMeshingTest.cpp:85: pcl::PointCloud<pcl::PointNormal> _out_FixturePlanePointCloud, _out_SavedPlanePointCloud;
  143. testing/meshing/greedyProjectionMeshingTest.cpp:96: pcl::PointCloud<pcl::PointNormal>::Ptr _in_CubePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  144. testing/meshing/greedyProjectionMeshingTest.cpp:99: pcl::io::loadOBJFile("CubeGreedyProjectionMeshing.obj", _in_SavedCubePolygonMesh);
  145. testing/meshing/greedyProjectionMeshingTest.cpp:100: pcl::fromPCLPointCloud2(_out_FixtureCubePolygonMesh.cloud, _out_FixtureCubePointCloud);
  146. testing/meshing/greedyProjectionMeshingTest.cpp:101: pcl::fromPCLPointCloud2(_in_SavedCubePolygonMesh.cloud, _out_SavedCubePointCloud);
  147. testing/meshing/greedyProjectionMeshingTest.cpp:107: pcl::PointCloud<pcl::PointNormal> _in_CubePointNormalCloud;
  148. testing/meshing/greedyProjectionMeshingTest.cpp:108: pcl::PolygonMesh _out_FixtureCubePolygonMesh, _in_SavedCubePolygonMesh;
  149. testing/meshing/greedyProjectionMeshingTest.cpp:109: pcl::PointCloud<pcl::PointNormal> _out_FixtureCubePointCloud, _out_SavedCubePointCloud;
  150. testing/meshing/greedyProjectionMeshingTest.cpp:120: pcl::PointCloud<pcl::PointNormal>::Ptr _in_ArchPointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  151. testing/meshing/greedyProjectionMeshingTest.cpp:123: pcl::io::loadOBJFile("ArchGreedyProjectionMeshing.obj", _in_SavedArchPolygonMesh);
  152. testing/meshing/greedyProjectionMeshingTest.cpp:124: pcl::fromPCLPointCloud2(_out_FixtureArchPolygonMesh.cloud, _out_FixtureArchPointCloud);
  153. testing/meshing/greedyProjectionMeshingTest.cpp:125: pcl::fromPCLPointCloud2(_in_SavedArchPolygonMesh.cloud, _out_SavedArchPointCloud);
  154. testing/meshing/greedyProjectionMeshingTest.cpp:131: pcl::PointCloud<pcl::PointNormal> _in_ArchPointNormalCloud;
  155. testing/meshing/greedyProjectionMeshingTest.cpp:132: pcl::PolygonMesh _out_FixtureArchPolygonMesh, _in_SavedArchPolygonMesh;
  156. testing/meshing/greedyProjectionMeshingTest.cpp:133: pcl::PointCloud<pcl::PointNormal> _out_FixtureArchPointCloud, _out_SavedArchPointCloud;
  157. testing/meshing/greedyProjectionMeshingTest.cpp:144: pcl::PointCloud<pcl::PointNormal>::Ptr _in_SpherePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  158. testing/meshing/greedyProjectionMeshingTest.cpp:147: pcl::io::loadOBJFile("SphereGreedyProjectionMeshing.obj", _in_SavedSpherePolygonMesh);
  159. testing/meshing/greedyProjectionMeshingTest.cpp:148: pcl::fromPCLPointCloud2(_out_FixtureSpherePolygonMesh.cloud, _out_FixtureSpherePointCloud);
  160. testing/meshing/greedyProjectionMeshingTest.cpp:149: pcl::fromPCLPointCloud2(_in_SavedSpherePolygonMesh.cloud, _out_SavedSpherePointCloud);
  161. testing/meshing/greedyProjectionMeshingTest.cpp:155: pcl::PointCloud<pcl::PointNormal> _in_SpherePointNormalCloud;
  162. testing/meshing/greedyProjectionMeshingTest.cpp:156: pcl::PolygonMesh _out_FixtureSpherePolygonMesh, _in_SavedSpherePolygonMesh;
  163. testing/meshing/greedyProjectionMeshingTest.cpp:157: pcl::PointCloud<pcl::PointNormal> _out_FixtureSpherePointCloud, _out_SavedSpherePointCloud;
  164. testing/meshing/greedyProjectionMeshingTest.cpp:168: pcl::PointCloud<pcl::PointNormal>::Ptr _in_ConePointNormalCloudPtr( new pcl::PointCloud<pcl::PointNormal>);
  165. testing/meshing/greedyProjectionMeshingTest.cpp:171: pcl::io::loadOBJFile("ConeGreedyProjectionMeshing.obj", _in_SavedConePolygonMesh);
  166. testing/meshing/greedyProjectionMeshingTest.cpp:172: pcl::fromPCLPointCloud2(_out_FixtureConePolygonMesh.cloud, _out_FixtureConePointCloud);
  167. testing/meshing/greedyProjectionMeshingTest.cpp:173: pcl::fromPCLPointCloud2(_in_SavedConePolygonMesh.cloud, _out_SavedConePointCloud);
  168. testing/meshing/greedyProjectionMeshingTest.cpp:180: pcl::PointCloud<pcl::PointNormal> _in_ConePointNormalCloud;
  169. testing/meshing/greedyProjectionMeshingTest.cpp:181: pcl::PolygonMesh _out_FixtureConePolygonMesh, _in_SavedConePolygonMesh;
  170. testing/meshing/greedyProjectionMeshingTest.cpp:182: pcl::PointCloud<pcl::PointNormal> _out_FixtureConePointCloud, _out_SavedConePointCloud;
  171. testing/meshing/orderedPCDMesherTest.cpp:61: pcl::PointCloud<pcl::PointXYZRGB>::Ptr _in_PlaneCloudPtr(new pcl::PointCloud<pcl::PointXYZRGB>);
  172. testing/meshing/orderedPCDMesherTest.cpp:84: pcl::PointCloud<pcl::PointXYZRGB> _in_PlanePointCloud;
  173. testing/meshing/orderedPCDMesherTest.cpp:98: pcl::PointCloud<pcl::PointXYZRGB>::Ptr _in_CubeCloudPtr(new pcl::PointCloud<pcl::PointXYZRGB>);
  174. testing/meshing/orderedPCDMesherTest.cpp:113: pcl::PointCloud<pcl::PointXYZRGB> _in_CubePointCloud;
  175. testing/meshing/orderedPCDMesherTest.cpp:126: pcl::PointCloud<pcl::PointXYZRGB>::Ptr _in_ArchCloudPtr(new pcl::PointCloud<pcl::PointXYZRGB>);
  176. testing/meshing/orderedPCDMesherTest.cpp:141: pcl::PointCloud<pcl::PointXYZRGB> _in_ArchPointCloud;
  177. testing/meshing/orderedPCDMesherTest.cpp:154: pcl::PointCloud<pcl::PointXYZRGB>::Ptr _in_SphereCloudPtr(new pcl::PointCloud<pcl::PointXYZRGB>);
  178. testing/meshing/orderedPCDMesherTest.cpp:169: pcl::PointCloud<pcl::PointXYZRGB> _in_SpherePointCloud;
  179. testing/meshing/orderedPCDMesherTest.cpp:182: pcl::PointCloud<pcl::PointXYZRGB>::Ptr _in_ConeCloudPtr(new pcl::PointCloud<pcl::PointXYZRGB>);
  180. testing/meshing/orderedPCDMesherTest.cpp:198: pcl::PointCloud<pcl::PointXYZRGB> _in_ConePointCloud;
  181. testing/meshing/resamplePointCloudTest.cpp:44:double CalculateRadius(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud);
  182. testing/meshing/resamplePointCloudTest.cpp:53: pcl::PointCloud<pcl::PointXYZ>::Ptr _in_PlaneCloudPtr(new pcl::PointCloud<pcl::PointXYZ>);
  183. testing/meshing/resamplePointCloudTest.cpp:59: pcl::io::loadPCDFile("PlaneResamplePointCloudExample.pcd", _SavedPlaneCloud);
  184. testing/meshing/resamplePointCloudTest.cpp:68: pcl::PointCloud<pcl::PointXYZ> _in_PlanePointCloud;
  185. testing/meshing/resamplePointCloudTest.cpp:69: pcl::PointCloud<pcl::PointNormal> _out_PlanePointCloud, _SavedPlaneCloud;
  186. testing/meshing/resamplePointCloudTest.cpp:70: std::vector<pcl::PointNormal, Eigen::aligned_allocator<pcl::PointNormal> > _out_PlaneCloudPointData, _SavedPointCloudData;
  187. testing/meshing/resamplePointCloudTest.cpp:80: pcl::PointCloud<pcl::PointXYZ>::Ptr _in_CubeCloudPtr(new pcl::PointCloud<pcl::PointXYZ>);
  188. testing/meshing/resamplePointCloudTest.cpp:84: pcl::io::loadPCDFile("CubeResamplePointCloudExample.pcd", _SavedCubeCloud);
  189. testing/meshing/resamplePointCloudTest.cpp:93: pcl::PointCloud<pcl::PointXYZ> _in_CubePointCloud;
  190. testing/meshing/resamplePointCloudTest.cpp:94: pcl::PointCloud<pcl::PointNormal> _out_CubePointCloud, _SavedCubeCloud;
  191. testing/meshing/resamplePointCloudTest.cpp:95: std::vector<pcl::PointNormal, Eigen::aligned_allocator<pcl::PointNormal> > _out_CubeCloudPointData, _SavedPointCloudData;
  192. testing/meshing/resamplePointCloudTest.cpp:104: pcl::PointCloud<pcl::PointXYZ>::Ptr _in_ArchCloudPtr(new pcl::PointCloud<pcl::PointXYZ>);
  193. testing/meshing/resamplePointCloudTest.cpp:108: pcl::io::loadPCDFile("ArchResamplePointCloudExample.pcd", _SavedArchCloud);
  194. testing/meshing/resamplePointCloudTest.cpp:117: pcl::PointCloud<pcl::PointXYZ> _in_ArchPointCloud;
  195. testing/meshing/resamplePointCloudTest.cpp:118: pcl::PointCloud<pcl::PointNormal> _out_ArchPointCloud, _SavedArchCloud;
  196. testing/meshing/resamplePointCloudTest.cpp:119: std::vector<pcl::PointNormal, Eigen::aligned_allocator<pcl::PointNormal> > _out_ArchCloudPointData, _SavedPointCloudData;
  197. testing/meshing/resamplePointCloudTest.cpp:128: pcl::PointCloud<pcl::PointXYZ>::Ptr _in_SphereCloudPtr(new pcl::PointCloud<pcl::PointXYZ>);
  198. testing/meshing/resamplePointCloudTest.cpp:132: pcl::io::loadPCDFile("SphereResamplePointCloudExample.pcd", _SavedSphereCloud);
  199. testing/meshing/resamplePointCloudTest.cpp:141: pcl::PointCloud<pcl::PointXYZ> _in_SpherePointCloud;
  200. testing/meshing/resamplePointCloudTest.cpp:142: pcl::PointCloud<pcl::PointNormal> _out_SpherePointCloud, _SavedSphereCloud;
  201. testing/meshing/resamplePointCloudTest.cpp:143: std::vector<pcl::PointNormal, Eigen::aligned_allocator<pcl::PointNormal> > _out_SphereCloudPointData, _SavedPointCloudData;
  202. testing/meshing/resamplePointCloudTest.cpp:152: pcl::PointCloud<pcl::PointXYZ>::Ptr _in_ConeCloudPtr(new pcl::PointCloud<pcl::PointXYZ>);
  203. testing/meshing/resamplePointCloudTest.cpp:156: pcl::io::loadPCDFile("ConeResamplePointCloudExample.pcd", _SavedConeCloud);
  204. testing/meshing/resamplePointCloudTest.cpp:165: pcl::PointCloud<pcl::PointXYZ> _in_ConePointCloud;
  205. testing/meshing/resamplePointCloudTest.cpp:166: pcl::PointCloud<pcl::PointNormal> _out_ConePointCloud, _SavedConeCloud;
  206. testing/meshing/resamplePointCloudTest.cpp:167: std::vector<pcl::PointNormal, Eigen::aligned_allocator<pcl::PointNormal> > _out_ConeCloudPointData, _SavedPointCloudData;
  207. testing/meshing/resamplePointCloudTest.cpp:254:double CalculateRadius(pcl::PointCloud<pcl::PointXYZ>::Ptr cloud){
  208. testing/segmentation/localResliceParticleSim/localResliceParticleSimTest.cpp:21: PointXYZ(const pcl::PointXYZRGB p) : x(p.x), y(p.y), z(p.z) {}
  209. testing/texturing/simpleUVTest.cpp:75: pcl::PointCloud <pcl::PointXYZ> _in_PlanePointCloud;
  210. testing/texturing/simpleUVTest.cpp:107: pcl::PointCloud <pcl::PointXYZ> _in_ArchPointCloud;
  211. utils/invertCloud.cpp:30: pcl::PointCloud<pcl::PointXYZRGB>::Ptr input (new pcl::PointCloud<pcl::PointXYZRGB>);
  212. utils/invertCloud.cpp:31: pcl::io::loadPCDFile<pcl::PointXYZRGB> (input_path, *input);
  213. utils/invertCloud.cpp:37: pcl::io::savePCDFileBinaryCompressed(output_path, *input);
  214. utils/splitcloud.cpp:11:pcl::PointCloud<pcl::PointXYZRGB>::Ptr input (new pcl::PointCloud<pcl::PointXYZRGB>);
  215. utils/splitcloud.cpp:12:pcl::PointCloud<pcl::PointXYZRGB>::Ptr outputCache (new pcl::PointCloud<pcl::PointXYZRGB>);
  216. utils/splitcloud.cpp:31: pcl::io::loadPCDFile<pcl::PointXYZRGB> (input_path, *input);
  217. utils/splitcloud.cpp:58: pcl::io::savePCDFileBinaryCompressed(outputName, *outputCache);
  218. utils/txt2pcd.cpp:40: pcl::PointCloud<pcl::PointXYZRGB>::Ptr outputCloud (new pcl::PointCloud<pcl::PointXYZRGB>);
  219. utils/txt2pcd.cpp:53: pcl::PointXYZRGB point;
  220. utils/txt2pcd.cpp:66: pcl::io::savePCDFileBinaryCompressed(outputName, *outputCloud);
  221. utils/zxy2xyz.cpp:37: pcl::PointCloud<pcl::PointXYZRGB>::Ptr inputCloud (new pcl::PointCloud<pcl::PointXYZRGB>);
  222. utils/zxy2xyz.cpp:38: pcl::PointCloud<pcl::PointXYZRGB>::Ptr outputCloud (new pcl::PointCloud<pcl::PointXYZRGB>);
  223. utils/zxy2xyz.cpp:40: if (pcl::io::loadPCDFile<pcl::PointXYZRGB> (inputpath, *inputCloud) == -1) {
  224. utils/zxy2xyz.cpp:44: pcl::io::savePCDFileBinaryCompressed("cloud_zxy.pcd", *inputCloud); // Go ahead and save the original cloud
  225. utils/zxy2xyz.cpp:46: pcl::PointCloud<pcl::PointXYZRGB>::iterator origPoint = inputCloud->begin();
  226. utils/zxy2xyz.cpp:48: pcl::PointXYZRGB newPoint;
  227. utils/zxy2xyz.cpp:68: pcl::io::savePCDFileBinaryCompressed(outputpath, *outputCloud);
  228. volumepkg/volumepkg.cpp:196:pcl::PointCloud<pcl::PointXYZRGB>::Ptr VolumePkg::openCloud() const
  229. volumepkg/volumepkg.cpp:200: pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud(
  230. volumepkg/volumepkg.cpp:201: new pcl::PointCloud<pcl::PointXYZRGB>);
  231. volumepkg/volumepkg.cpp:202: pcl::io::loadPCDFile<pcl::PointXYZRGB>(outputName.string(), *cloud);
  232. volumepkg/volumepkg.cpp:221: const pcl::PointCloud<pcl::PointXYZRGB>& segmentedCloud) const
  233. volumepkg/volumepkg.cpp:226: pcl::io::savePCDFileBinaryCompressed(outputName.string(),
  234. volumepkg/volumepkg.cpp:228: } catch (pcl::IOException) {
  235. volumepkg/volumepkg.cpp:239: const pcl::PointCloud<pcl::PointXYZRGB>::Ptr& segmentedCloud) const
  236. volumepkg/volumepkg.h:142: pcl::PointCloud<pcl::PointXYZRGB>::Ptr openCloud() const;
  237. volumepkg/volumepkg.h:149: const pcl::PointCloud<pcl::PointXYZRGB>& segmentedCloud) const;
  238. volumepkg/volumepkg.h:152: const pcl::PointCloud<pcl::PointXYZRGB>::Ptr& segmentedCloud) const;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement