/README.md

https://bitbucket.org/tommasopaladini/dexrov-plotter · Markdown · 42 lines · 29 code · 13 blank · 0 comment · 0 complexity · a0c823eeb7307a8b75815ae0b779a4a7 MD5 · raw file

  1. # ros-plotter
  2. **ros-plotter** is a ROS node developed in C++ that plots *topic messages* in real-time.
  3. The GUI of the node is made using [Qt library](https://www.qt.io/), while plotting functions have been integrated with [QCustomPlot](http://qcustomplot.com/).
  4. ![screenshot](programexecution.png)
  5. This project has been forked by the DexROV Team and development is being continued upon this version of the code. For this reason, I had to use C++.
  6. Also, considering that variables are defined on the source code and cannot be changed during the execution of the program, ros-plotter cannot be *used universally*, meaning that it cannot be simply downloaded and directly integrated on other ROS projects. This feature has never been implemented for the following reasons:
  7. * ROS nodes are usually bound to architectures because ROS distributions are not backwards compatible;
  8. * ROS community tends to rely on *hardcoding* topics and messages;
  9. * it has been developed from the start within the DexROV project;
  10. * QCustomPlot license does not allow distribution of modified copies and this project has a modified one (some names have been refactored for compiling with ROS env);
  11. ## How can I integrate ros-plotter with my ROS project?
  12. ### Requirements
  13. 1. ROS Indigo Igloo
  14. 2. An existing project
  15. 3. Qt5
  16. ### Steps
  17. 1. Create a ROS package with Qt support, using `catkin_create_qt_package`.
  18. 2. Replace your package files with ros-plotter source code.
  19. 3. Change topic types, messages types inside `rosplotter.h` and `rosplotter.cpp` with your topic and messages types.
  20. 4. Assign plotted values to `double` type variables in `rosplotter.h` and `rosplotter.cpp`.
  21. 5. Make sure to rename plot names in `mainwindow.cpp` and `mainwindow.h` and connect them to the desired variables.
  22. 6. Test and fix.
  23. ### Possible improvements
  24. * Dynamically adding topics and plottable variables;
  25. * UI fixes;
  26. ## More information
  27. I am Tommaso, graduate in Information Engineering. **ros-plotter** was my graduation thesis for bachelor degree.
  28. **If you want to know more about this project, on its architecture and how it works, I can provide you all the information you need.**
  29. You can contact me at [tommaso.paladini@outlook.com](mailto:tommaso.paladini@outlook.com) .