pose_with_covariance_display.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, Ellon Paiva Mendes @ LAAS-CNRS
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef POSE_WITH_COVARIANCE_DISPLAY_H
31 #define POSE_WITH_COVARIANCE_DISPLAY_H
32 
33 #include <boost/shared_ptr.hpp>
34 
35 #include <geometry_msgs/PoseWithCovarianceStamped.h>
36 
39 
40 namespace rviz
41 {
42 class Arrow;
43 class Axes;
44 class ColorProperty;
45 class EnumProperty;
46 class FloatProperty;
47 class BoolProperty;
48 class Shape;
49 
50 class CovarianceVisual;
51 class CovarianceProperty;
52 
56 
59  : public rviz::MessageFilterDisplay<geometry_msgs::PoseWithCovarianceStamped>
60 {
61  Q_OBJECT
62 public:
63  enum Shape
64  {
67  };
68 
70  ~PoseWithCovarianceDisplay() override;
71 
72  void onInitialize() override;
73  void reset() override;
74 
75 protected:
77  void onEnable() override;
78 
79 private Q_SLOTS:
80  void updateShapeVisibility();
81  void updateColorAndAlpha();
82  void updateShapeChoice();
83  void updateAxisGeometry();
84  void updateArrowGeometry();
85 
86 private:
87  void clear();
88 
89  void processMessage(const geometry_msgs::PoseWithCovarianceStamped::ConstPtr& message) override;
90 
96 
98 
101 
106 
109 
111 
113 };
114 
115 } // namespace rviz
116 
117 #endif // POSE_WITH_COVARIANCE_DISPLAY_H
rviz::MessageFilterDisplay
Display subclass using a tf2_ros::MessageFilter, templated on the ROS message type.
Definition: message_filter_display.h:90
rviz::PoseWithCovarianceDisplay::updateColorAndAlpha
void updateColorAndAlpha()
Definition: pose_with_covariance_display.cpp:243
rviz::PoseWithCovarianceDisplay::onInitialize
void onInitialize() override
Override this function to do subclass-specific initialization.
Definition: pose_with_covariance_display.cpp:202
rviz::PoseWithCovarianceDisplay::updateAxisGeometry
void updateAxisGeometry()
Definition: pose_with_covariance_display.cpp:260
rviz::PoseWithCovarianceDisplay::Arrow
@ Arrow
Definition: pose_with_covariance_display.h:65
message_filter_display.h
boost::shared_ptr< PoseWithCovarianceDisplaySelectionHandler >
rviz::Arrow
An arrow consisting of a cylinder and a cone.
Definition: arrow.h:57
forwards.h
rviz::PoseWithCovarianceDisplay::head_length_property_
rviz::FloatProperty * head_length_property_
Definition: pose_with_covariance_display.h:103
rviz::PoseWithCovarianceDisplay::Shape
Shape
Definition: pose_with_covariance_display.h:63
rviz::PoseWithCovarianceDisplay::covariance_
boost::shared_ptr< CovarianceVisual > covariance_
Definition: pose_with_covariance_display.h:93
rviz::PoseWithCovarianceDisplaySelectionHandler
Definition: pose_with_covariance_display.cpp:57
rviz::CovarianceProperty
Property specialized to provide getter for booleans.
Definition: covariance_property.h:56
rviz::PoseWithCovarianceDisplay::shape_property_
rviz::EnumProperty * shape_property_
Definition: pose_with_covariance_display.h:97
rviz::PoseWithCovarianceDisplay::axes_radius_property_
rviz::FloatProperty * axes_radius_property_
Definition: pose_with_covariance_display.h:108
rviz::PoseWithCovarianceDisplay::updateShapeChoice
void updateShapeChoice()
Definition: pose_with_covariance_display.cpp:266
rviz::PoseWithCovarianceDisplay::~PoseWithCovarianceDisplay
~PoseWithCovarianceDisplay() override
Definition: pose_with_covariance_display.cpp:228
rviz::ColorProperty
Definition: color_property.h:40
rviz::EnumProperty
Enum property.
Definition: enum_property.h:46
rviz::PoseWithCovarianceDisplay::coll_handler_
PoseWithCovarianceDisplaySelectionHandlerPtr coll_handler_
Definition: pose_with_covariance_display.h:95
rviz::FloatProperty
Property specialized to enforce floating point max/min.
Definition: float_property.h:37
rviz::PoseWithCovarianceDisplay::reset
void reset() override
Called to tell the display to clear its state.
Definition: pose_with_covariance_display.cpp:350
rviz::PoseWithCovarianceDisplay::updateArrowGeometry
void updateArrowGeometry()
Definition: pose_with_covariance_display.cpp:253
rviz
Definition: add_display_dialog.cpp:54
rviz::PoseWithCovarianceDisplay::clear
void clear()
rviz::PoseWithCovarianceDisplay::processMessage
void processMessage(const geometry_msgs::PoseWithCovarianceStamped::ConstPtr &message) override
Definition: pose_with_covariance_display.cpp:302
rviz::PoseWithCovarianceDisplay::shaft_radius_property_
rviz::FloatProperty * shaft_radius_property_
Definition: pose_with_covariance_display.h:104
rviz::PoseWithCovarianceDisplay::head_radius_property_
rviz::FloatProperty * head_radius_property_
Definition: pose_with_covariance_display.h:102
rviz::Axes
An object that displays a set of X/Y/Z axes, with X=Red, Y=Green, Z=Blue.
Definition: axes.h:57
rviz::PoseWithCovarianceDisplaySelectionHandlerPtr
boost::shared_ptr< PoseWithCovarianceDisplaySelectionHandler > PoseWithCovarianceDisplaySelectionHandlerPtr
Definition: pose_with_covariance_display.h:53
rviz::PoseWithCovarianceDisplay::covariance_property_
CovarianceProperty * covariance_property_
Definition: pose_with_covariance_display.h:110
rviz::PoseWithCovarianceDisplay::axes_
rviz::Axes * axes_
Definition: pose_with_covariance_display.h:92
rviz::PoseWithCovarianceDisplay::alpha_property_
rviz::FloatProperty * alpha_property_
Definition: pose_with_covariance_display.h:100
rviz::PoseWithCovarianceDisplay::color_property_
rviz::ColorProperty * color_property_
Definition: pose_with_covariance_display.h:99
rviz::PoseWithCovarianceDisplay::onEnable
void onEnable() override
Overridden from MessageFilterDisplay to get Arrow/Axes visibility correct.
Definition: pose_with_covariance_display.cpp:237
rviz::PoseWithCovarianceDisplay::shaft_length_property_
rviz::FloatProperty * shaft_length_property_
Definition: pose_with_covariance_display.h:105
rviz::PoseWithCovarianceDisplay::updateShapeVisibility
void updateShapeVisibility()
Definition: pose_with_covariance_display.cpp:285
rviz::PoseWithCovarianceDisplay::pose_valid_
bool pose_valid_
Definition: pose_with_covariance_display.h:94
rviz::PoseWithCovarianceDisplay::arrow_
rviz::Arrow * arrow_
Definition: pose_with_covariance_display.h:91
rviz::PoseWithCovarianceDisplay::axes_length_property_
rviz::FloatProperty * axes_length_property_
Definition: pose_with_covariance_display.h:107
rviz::PoseWithCovarianceDisplay::PoseWithCovarianceDisplay
PoseWithCovarianceDisplay()
Definition: pose_with_covariance_display.cpp:159
rviz::PoseWithCovarianceDisplay
Displays the pose from a geometry_msgs::PoseWithCovarianceStamped message.
Definition: pose_with_covariance_display.h:58
rviz::PoseWithCovarianceDisplay::Axes
@ Axes
Definition: pose_with_covariance_display.h:66


rviz
Author(s): Dave Hershberger, David Gossow, Josh Faust, William Woodall
autogenerated on Sat Jun 1 2024 02:31:53