1

点群内の点の法線ベクトルを推定して表示するための次のコードがあります。

int main(int argc, char* argv[]) {

      pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ>);

      if (pcl::io::loadPCDFile<pcl::PointXYZ> ("coffee_mug_1_1_1.pcd", *cloud) == -1) //* load the file
      {
        PCL_ERROR ("Couldn't read file coffee_mug_1_1_1.pcd \n");
        return (-1);
      }
      std::cout << "Loaded "
                << cloud->width * cloud->height
                << " data points from test_pcd.pcd with the following fields: "
                << std::endl;


      pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> ne;
      ne.setInputCloud (cloud);

      // Create an empty kdtree representation, and pass it to the normal estimation object.
      // Its content will be filled inside the object, based on the given input dataset (as no other search surface is given).
      pcl::search::KdTree<pcl::PointXYZ>::Ptr tree (new pcl::search::KdTree<pcl::PointXYZ> ());
      ne.setSearchMethod (tree);

      // Output datasets
      pcl::PointCloud<pcl::Normal>::Ptr cloud_normals (new pcl::PointCloud<pcl::Normal>);

      // Use all neighbors in a sphere of radius 3cm
      ne.setRadiusSearch (0.03);

      // Compute the features
      ne.compute (*cloud_normals);

      cout << "Computed normals " << cloud_normals->width * cloud_normals->height << cloud_normals->points[0] << endl;    

      pcl::visualization::PCLVisualizer viewer("PCL Viewer");

      viewer.setBackgroundColor(0.0, 0.0, 0.5);
      viewer.addPointCloud(cloud);
      viewer.addPointCloudNormals<pcl::PointXYZ,pcl::Normal>(cloud, cloud_normals);
      while (!viewer.wasStopped ())
      {
          viewer.spinOnce ();
      }
}

しかし、それを実行すると、PCLVisualizerが画面上で点滅し、プログラムが終了します。なぜ留まらないのか分かりません。CloudViewerを使用して(法線ではなく)点群を表示する場合、これは正常に機能し、画面に表示されたままになります。

4

2 に答える 2

1

あなたがチェックできる3つのこと:

  1. 実際にファイルをエラーなしで読み取ったことを確認してください。ファイルを読み取れなかった場合に直接終了しないように、cin.get()直後に置くことができます。PCL_ERROR ("Couldn't read file coffee_mug_1_1_1.pcd \n");
  2. 法線を視覚化する場合は、おそらく法線に別のIDを指定する必要があります。これは、現在、クラウドと法線の両方でID「cloud」が使用されていると思うためです。通常の視覚化でPCLの例を確認してください。(例viewer.addPointCloud(cloud, "cloud"); viewer.addPointCloudNormals<pcl::PointXYZ,pcl::Normal>(cloud, cloud_normals, 10, 0.05, "normals");
  3. 法線に対して有効な値を取得していることを確認してください。

それらの作品から何も得られない場合は、コーヒーマグのPCDをどこかにアップロードして、リンクを提供していただけませんか。

于 2012-12-12T23:26:56.913 に答える
0

私はここで私が抱えていた問題を発見しました、私は私のリンクライブラリパスに/ usr / libを持っていたので、私がコンパイルしていたブーストライブラリに対してリンクしていませんでした

于 2013-01-24T17:10:19.670 に答える