All Projects → HaoQChen → Show_trajectory

HaoQChen / Show_trajectory

This repository collected 3 ways to show trajectory of robot in ROS

Projects that are alternatives of or similar to Show trajectory

Free gait
An Architecture for the Versatile Control of Legged Robots
Stars: ✭ 263 (+447.92%)
Mutual labels:  ros, robot
Towr
A light-weight, Eigen-based C++ library for trajectory optimization for legged robots.
Stars: ✭ 410 (+754.17%)
Mutual labels:  ros, robot
Dynamixelsdk
ROBOTIS Dynamixel SDK (Protocol1.0/2.0)
Stars: ✭ 266 (+454.17%)
Mutual labels:  ros, robot
erdos
Dataflow system for building self-driving car and robotics applications.
Stars: ✭ 135 (+181.25%)
Mutual labels:  robot, ros
Fourth robot pkg
4号機(KIT-C4)用リポジトリ
Stars: ✭ 7 (-85.42%)
Mutual labels:  ros, robot
awesome-webots
Awesome Webots
Stars: ✭ 46 (-4.17%)
Mutual labels:  robot, ros
Handeye calib camodocal
Easy to use and accurate hand eye calibration which has been working reliably for years (2016-present) with kinect, kinectv2, rgbd cameras, optical trackers, and several robots including the ur5 and kuka iiwa.
Stars: ✭ 364 (+658.33%)
Mutual labels:  ros, robot
moveit python
Pure Python Bindings to ROS MoveIt!
Stars: ✭ 107 (+122.92%)
Mutual labels:  robot, ros
Turtlebot3
ROS packages for Turtlebot3
Stars: ✭ 673 (+1302.08%)
Mutual labels:  ros, robot
Awesome Robotics
A curated list of awesome links and software libraries that are useful for robots.
Stars: ✭ 478 (+895.83%)
Mutual labels:  ros, robot
ROS-TCP-Connector
No description or website provided.
Stars: ✭ 123 (+156.25%)
Mutual labels:  robot, ros
True artificial intelligence
真AI人工智能
Stars: ✭ 38 (-20.83%)
Mutual labels:  ros, robot
erwhi-hedgehog
Erwhi Hedgehog main repository
Stars: ✭ 31 (-35.42%)
Mutual labels:  robot, ros
notspot sim py
This repository contains all the code and files needed to simulate the notspot quadrupedal robot using Gazebo and ROS.
Stars: ✭ 41 (-14.58%)
Mutual labels:  robot, ros
Virtual-Robot-Challenge
How-to on simulating a robot with V-REP and controlling it with ROS
Stars: ✭ 83 (+72.92%)
Mutual labels:  robot, ros
Easy handeye
Automated, hardware-independent Hand-Eye Calibration
Stars: ✭ 355 (+639.58%)
Mutual labels:  ros, robot
conde simulator
Autonomous Driving Simulator for the Portuguese Robotics Open
Stars: ✭ 31 (-35.42%)
Mutual labels:  robot, ros
Turtlebot Navigation
This project was completed on May 15, 2015. The goal of the project was to implement software system for frontier based exploration and navigation for turtlebot-like robots.
Stars: ✭ 28 (-41.67%)
Mutual labels:  robot, ros
Unity Robotics Hub
Central repository for tools, tutorials, resources, and documentation for robotics simulation in Unity.
Stars: ✭ 439 (+814.58%)
Mutual labels:  ros, robot
Upboard ros
ROS nodes for upboard usage
Stars: ✭ 22 (-54.17%)
Mutual labels:  ros, robot

Introduction

This repository collected 3 ways to show trajectory of robot in ROS. And I had test them all in indigo.

How to Run

There are three nodes declared in CMakeLists.txt. You just need to

catkin_make
roscore
rosrun rviz rviz
rosrun show_trajectory by_path
or
rosrun show_trajectory by_marker
or
rosrun show_trajectory by_marker_list


and then add corresponding display in rviz

by_path add Path
by_marker and by_marker_list add Marker

and remember to set Fixed Frame to my_frame

Three Ways

1. nav_msgs/Path

public a nav_msgs::Path message which contains an array of geometry_msgs/PoseStamped
result

2. visualization_msgs/Marker

public visualization_msgs::Marker and hold them by setting lifetime to forever. But remember to update the id of Marker to avoid covering previous markers.
result

3. visualization_msgs/Marker list

public visualization_msgs::Marker's points and lines which contains an array of geometry_msgs/Point
result


Thank you for your star! (grinning)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].