ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Adolfo Rodriguez T's profile - activity

2023-01-29 11:31:47 -0500 received badge  Great Answer (source)
2022-07-01 06:32:56 -0500 received badge  Nice Answer (source)
2022-06-08 05:49:41 -0500 received badge  Nice Answer (source)
2022-05-03 08:58:15 -0500 received badge  Nice Answer (source)
2022-02-23 09:20:34 -0500 received badge  Nice Answer (source)
2021-10-19 02:08:11 -0500 received badge  Nice Answer (source)
2021-08-07 03:19:47 -0500 received badge  Nice Answer (source)
2021-07-13 06:12:15 -0500 received badge  Great Answer (source)
2021-07-13 06:12:15 -0500 received badge  Guru (source)
2020-08-13 19:53:07 -0500 received badge  Good Answer (source)
2020-06-10 10:39:41 -0500 received badge  Great Question (source)
2020-05-17 14:25:23 -0500 received badge  Good Answer (source)
2020-05-13 08:52:38 -0500 received badge  Good Answer (source)
2020-03-13 10:59:57 -0500 received badge  Good Answer (source)
2020-03-12 09:17:16 -0500 received badge  Nice Answer (source)
2019-10-17 10:48:43 -0500 received badge  Good Answer (source)
2019-04-25 18:08:21 -0500 received badge  Guru (source)
2019-01-19 10:32:21 -0500 received badge  Nice Answer (source)
2018-11-21 01:48:09 -0500 received badge  Good Answer (source)
2018-11-11 21:42:11 -0500 received badge  Good Answer (source)
2018-11-09 01:20:07 -0500 received badge  Good Answer (source)
2018-11-09 00:35:32 -0500 received badge  Nice Answer (source)
2018-10-19 06:42:37 -0500 received badge  Great Answer (source)
2018-10-19 06:42:37 -0500 received badge  Guru (source)
2018-10-10 23:44:16 -0500 received badge  Nice Answer (source)
2018-05-25 06:59:05 -0500 received badge  Guru (source)
2018-05-25 06:59:05 -0500 received badge  Great Answer (source)
2018-03-30 11:27:01 -0500 received badge  Nice Answer (source)
2018-03-20 06:06:09 -0500 received badge  Good Answer (source)
2018-03-11 09:49:31 -0500 received badge  Nice Answer (source)
2018-02-07 04:04:20 -0500 received badge  Nice Answer (source)
2018-01-30 21:11:23 -0500 received badge  Guru (source)
2017-10-09 14:06:14 -0500 received badge  Nice Answer (source)
2017-08-23 14:01:04 -0500 received badge  Nice Answer (source)
2017-06-30 02:05:10 -0500 marked best answer Has anyone written a trajectory plotting tool?

Adam Leeper asked on ros-users:

I'd like a tool that plots a series of joint trajectories. In my work, I continuously re-plan motions, meaning I need each trajectory to spline smoothly at a particular time with the previously commanded trajectory. Having a graphical tool to verify that this is happening correctly would be very useful.

Has anyone already written such a tool? Otherwise, I guess I'll start getting familiar with rqt and matplotlib...

David Lu answered on ros-users:

I have a tool based around a library here: https://code.google.com/p/wu-robotics/source/browse/trunk/precise_trajectory/graph_trajectory/src/graph_trajectory/__init__.py

It also uses a JointWatcher to record the values that are actually performed. https://code.google.com/p/wu-robotics/source/browse/trunk/precise_trajectory/pr2_precise_trajectory/src/pr2_precise_trajectory/joint_watcher.py

Dorian Scholz answered on ros-users:

the rqt GUI has a 2D plotter rqt_plot that can plot numerical data from messages. It is very similar to rxplot, but there is no restriction (as far as I know) on how many variables can be plotted. It's just dependent on you CPU power... rqt_plot has three different drawing backends selectable from it's configuration menu: - qwt plot (fast, but not using message timestamps and needs python-qwt bindings) - pyqtgraph (fast and needs pyqtgraph to be installed which is not in the repos) - matplotlib (slow but always available)

Dirk Thomas answered on ros-users:

Even without any further information how you want to plot the trajectories I would recommend looking into QGraphicsScene as the backend. May be this is a better fit than using matplotlib.