Skip to content

Commit

Permalink
コメント修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuwamai committed Oct 16, 2024
1 parent 95bd86e commit 71d1f8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sciurus17_examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ ros2 launch sciurus17_examples chest_camera_tracking.launch.py
点群から物体を検出して掴むコード例です。

検出された物体位置はtfのフレームとして配信されます。
tfの`frame_id`は検出された順に`target_0``target_1``target_2`…に設定されます。掴む対象は`target_0`に設定されています。
tfの`frame_id`は検出された順に`target_0``target_1``target_2`…に設定されます。
掴む対象はSciurus17前方の0.3 mの範囲にある`target_0`に設定されています。
物体検出には[Point Cloud Library](https://pointclouds.org/)を使用しています。

次のコマンドを実行します
Expand Down
2 changes: 1 addition & 1 deletion sciurus17_examples/src/point_cloud_detection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class PointCloudSubscriber : public rclcpp::Node

bool preprocessing(std::shared_ptr<pcl::PointCloud<pcl::PointXYZRGB>> & cloud)
{
// X軸方向0.08~0.3m以外の点群を削除
// X軸方向0.08~0.5m以外の点群を削除
pcl::PassThrough<pcl::PointXYZRGB> pass;
pass.setInputCloud(cloud);
pass.setFilterFieldName("x");
Expand Down

0 comments on commit 71d1f8e

Please sign in to comment.