├── .github └── workflows │ └── ros_ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── LICENSE ├── QCustomPlot_GPL.txt ├── README.md ├── config └── example.rviz ├── documentation ├── histogram_panel.png ├── histogram_settings.png ├── line_graph_panel.png ├── line_graph_settings.png └── topic_selection.png ├── graph_rviz_plugin.svg ├── include └── graph_rviz_plugin │ ├── graph_settings.hpp │ ├── histogram_panel.hpp │ ├── line_panel.hpp │ ├── qcustomplot.h │ ├── selection_topics.hpp │ ├── settings.hpp │ ├── topic_color.hpp │ └── topic_data.hpp ├── launch └── example.launch ├── package.xml ├── plugin.xml ├── scripts ├── example_multi_array.py └── subtopic_repub.py └── src ├── graph_settings.cpp ├── histogram_panel.cpp ├── line_panel.cpp ├── qcustomplot.cpp ├── selection_topics.cpp ├── settings.cpp ├── topic_color.cpp └── topic_data.cpp /.github/workflows/ros_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/.github/workflows/ros_ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | *.kate-swp 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /QCustomPlot_GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/QCustomPlot_GPL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/README.md -------------------------------------------------------------------------------- /config/example.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/config/example.rviz -------------------------------------------------------------------------------- /documentation/histogram_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/documentation/histogram_panel.png -------------------------------------------------------------------------------- /documentation/histogram_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/documentation/histogram_settings.png -------------------------------------------------------------------------------- /documentation/line_graph_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/documentation/line_graph_panel.png -------------------------------------------------------------------------------- /documentation/line_graph_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/documentation/line_graph_settings.png -------------------------------------------------------------------------------- /documentation/topic_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/documentation/topic_selection.png -------------------------------------------------------------------------------- /graph_rviz_plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/graph_rviz_plugin.svg -------------------------------------------------------------------------------- /include/graph_rviz_plugin/graph_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/graph_settings.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/histogram_panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/histogram_panel.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/line_panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/line_panel.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/qcustomplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/qcustomplot.h -------------------------------------------------------------------------------- /include/graph_rviz_plugin/selection_topics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/selection_topics.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/settings.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/topic_color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/topic_color.hpp -------------------------------------------------------------------------------- /include/graph_rviz_plugin/topic_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/include/graph_rviz_plugin/topic_data.hpp -------------------------------------------------------------------------------- /launch/example.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/launch/example.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/package.xml -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/plugin.xml -------------------------------------------------------------------------------- /scripts/example_multi_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/scripts/example_multi_array.py -------------------------------------------------------------------------------- /scripts/subtopic_repub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/scripts/subtopic_repub.py -------------------------------------------------------------------------------- /src/graph_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/graph_settings.cpp -------------------------------------------------------------------------------- /src/histogram_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/histogram_panel.cpp -------------------------------------------------------------------------------- /src/line_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/line_panel.cpp -------------------------------------------------------------------------------- /src/qcustomplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/qcustomplot.cpp -------------------------------------------------------------------------------- /src/selection_topics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/selection_topics.cpp -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/topic_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/topic_color.cpp -------------------------------------------------------------------------------- /src/topic_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/graph_rviz_plugin/HEAD/src/topic_data.cpp --------------------------------------------------------------------------------