Created
December 10, 2016 18:46
-
-
Save d3rezz/3ef9f0c626e89fe9bdaa750ee14ba37d to your computer and use it in GitHub Desktop.
Kinect Skeleton tracking with Openni_tracker on ROS Indigo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Download openni_tracker | |
cd ~/catkin_ws/src/ | |
git clone https://github.com/ros-drivers/openni_tracker | |
source ~/catkin_ws/devel/setup.bash | |
#Create new launcher that passes the correct params | |
vim ~/catkin_ws/src/openni_tracker/tracker.launch | |
#Paste this (taken from: http://pastebin.com/NuJEYaf0) | |
<launch> | |
<node pkg="openni_tracker" type="openni_tracker" name="openni_tracker" output="screen"> | |
<param name="camera_frame_id" value="/camera_link" /> | |
<param name="tf_prefix" value="tracker" /> | |
</node> | |
</launch> | |
roslaunch openni_tracker tracker.launch | |
#Visualize the data | |
rosrun rviz rviz | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment