teaching:se-kiba:perception-tutorial
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
teaching:se-kiba:perception-tutorial [2013/04/24 20:32] – balintbe | teaching:se-kiba:perception-tutorial [2016/05/19 09:19] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | =====Perception Tutorial===== | + | =======Perception Tutorial======= |
- | More detailed description to be added soon\\ | + | |
- | Code will be available at:\\ | + | Tutorial describing first steps needed to start processing data from the Kinect, in the form of Point Clouds, |
- | [[https:// | + | |
- | ==Viewing and recording data from the Kinect== | + | ==== 1. Prerequisite ==== |
- | + | ||
- | * viewing with //rviz// (point clouds) and // | + | |
- | * record using bag files or save clouds in *pcd files using tool in ros_pcl\\ | + | |
- | * replay bag files, view them in rviz\\ | + | |
- | * subscribing to the PointCloud topic from C++ | + | |
- | ==Processing Point Clouds== | + | Follow the steps described in [[software: |
- | * reading | + | If you are using a PrimeSense device (Xbox Kinect, Asus Xtion) check whether // |
- | | + | |
- | * removing nans | + | If not present install using: |
- | * filtering based on axes | + | |
- | | + | |
+ | Check out the code presented at seminar in your ros-workspace from:\\ | ||
+ | [[https:// | ||
+ | Prerecorded bag file can be found in ../ | ||
+ | ==== 2. Viewing and recording data from the Kinect === | ||
+ | |||
+ | == Bag files and Rviz == | ||
+ | For a PrimeSense device: connect it to your PC and run: | ||
+ | roslaunch openni_launch openni.launch | ||
+ | Run rviz: | ||
+ | rosrun rviz rviz | ||
+ | Add a new PointCloud2 display type to rviz, and choose // / | ||
+ | |||
+ | Use //rosbag// to record data in a bag file, e.g.: | ||
+ | rosbag record / | ||
+ | Note: /tf is needed if you want to view the recorded data using rviz. | ||
+ | Play back a bag file using: | ||
+ | rosbag play filename.bag --loop | ||
+ | More detail and a more elegant way of saving data from a Kinect to bag files can be found [[http:// | ||
+ | |||
+ | In order to save Point Clouds to *.pcd files run: | ||
+ | rosrun pcl_ros pointcloud_to_pcd / | ||
| | ||
+ | == Image_view == | ||
+ | View rgb image: | ||
+ | rosrun image_view image_view image: | ||
+ | View depth image: | ||
+ | rosrun image_view image_view image: | ||
+ | | ||
+ | == From a ROS node == | ||
+ | |||
+ | To see how you subscribe to a topic from a ros node take a look at // | ||
+ | |||
+ | ==== 3.Processing Point Clouds ==== | ||
+ | |||
+ | The following are presented in // | ||
+ | * reading in a pcd file[[http:// | ||
+ | * using PCLVisualizer[[http:// | ||
+ | * removing nans | ||
+ | * calcultaing normals[[http:// | ||
+ | * filtering based on axes[[http:// | ||
+ | * downsampling the Point Cloud[[http:// | ||
+ | * RANSAC plane fitting, and extracting indices [[http:// | ||
+ | |||
+ | For further questions contact: // |
teaching/se-kiba/perception-tutorial.1366835541.txt.gz · Last modified: 2016/05/19 09:18 (external edit)