#include <point_cloud_transformers.h>
Public Member Functions | |
virtual void | createProperties (Property *parent_property, uint32_t mask, QList< Property * > &out_props) |
Create any properties necessary for this transformer. Will be called once when the transformer is loaded. All properties must be added to the out_props vector. | |
virtual uint8_t | score (const sensor_msgs::PointCloud2ConstPtr &cloud) |
"Score" a message for how well supported the message is. For example, a "flat color" transformer can support any cloud, but will return a score of 0 here since it should not be preferred over others that explicitly support fields in the message. This allows that "flat color" transformer to still be selectable, but generally not chosen automatically. | |
virtual uint8_t | supports (const sensor_msgs::PointCloud2ConstPtr &cloud) |
Returns a level of support for a specific cloud. This level of support is a mask using the SupportLevel enum. | |
virtual bool | transform (const sensor_msgs::PointCloud2ConstPtr &cloud, uint32_t mask, const Ogre::Matrix4 &transform, V_PointCloudPoint &points_out) |
Transforms a PointCloud2 into an rviz::PointCloud. The rviz::PointCloud is assumed to have been preallocated into the correct size. The mask determines which part of the cloud should be output (xyz or color). This method will only be called if supports() of the same cloud has returned a non-zero mask, and will only be called with masks compatible with the one returned from supports() | |
void | updateChannels (const sensor_msgs::PointCloud2ConstPtr &cloud) |
Private Slots | |
void | updateAutoComputeIntensityBounds () |
void | updateUseRainbow () |
Private Attributes | |
BoolProperty * | auto_compute_intensity_bounds_property_ |
V_string | available_channels_ |
EditableEnumProperty * | channel_name_property_ |
BoolProperty * | invert_rainbow_property_ |
ColorProperty * | max_color_property_ |
FloatProperty * | max_intensity_property_ |
ColorProperty * | min_color_property_ |
FloatProperty * | min_intensity_property_ |
BoolProperty * | use_rainbow_property_ |
Definition at line 113 of file point_cloud_transformers.h.
void rviz::IntensityPCTransformer::createProperties | ( | Property * | parent_property, |
uint32_t | mask, | ||
QList< Property * > & | out_props | ||
) | [virtual] |
Create any properties necessary for this transformer. Will be called once when the transformer is loaded. All properties must be added to the out_props vector.
Reimplemented from rviz::PointCloudTransformer.
Definition at line 169 of file point_cloud_transformers.cpp.
uint8_t rviz::IntensityPCTransformer::score | ( | const sensor_msgs::PointCloud2ConstPtr & | cloud | ) | [virtual] |
"Score" a message for how well supported the message is. For example, a "flat color" transformer can support any cloud, but will return a score of 0 here since it should not be preferred over others that explicitly support fields in the message. This allows that "flat color" transformer to still be selectable, but generally not chosen automatically.
Reimplemented from rviz::PointCloudTransformer.
Definition at line 70 of file point_cloud_transformers.cpp.
uint8_t rviz::IntensityPCTransformer::supports | ( | const sensor_msgs::PointCloud2ConstPtr & | cloud | ) | [virtual] |
Returns a level of support for a specific cloud. This level of support is a mask using the SupportLevel enum.
Implements rviz::PointCloudTransformer.
Definition at line 64 of file point_cloud_transformers.cpp.
bool rviz::IntensityPCTransformer::transform | ( | const sensor_msgs::PointCloud2ConstPtr & | cloud, |
uint32_t | mask, | ||
const Ogre::Matrix4 & | transform, | ||
V_PointCloudPoint & | out | ||
) | [virtual] |
Transforms a PointCloud2 into an rviz::PointCloud. The rviz::PointCloud is assumed to have been preallocated into the correct size. The mask determines which part of the cloud should be output (xyz or color). This method will only be called if supports() of the same cloud has returned a non-zero mask, and will only be called with masks compatible with the one returned from supports()
Implements rviz::PointCloudTransformer.
Definition at line 75 of file point_cloud_transformers.cpp.
void rviz::IntensityPCTransformer::updateAutoComputeIntensityBounds | ( | ) | [private, slot] |
Definition at line 245 of file point_cloud_transformers.cpp.
void rviz::IntensityPCTransformer::updateChannels | ( | const sensor_msgs::PointCloud2ConstPtr & | cloud | ) |
Definition at line 220 of file point_cloud_transformers.cpp.
void rviz::IntensityPCTransformer::updateUseRainbow | ( | ) | [private, slot] |
Definition at line 263 of file point_cloud_transformers.cpp.
Definition at line 135 of file point_cloud_transformers.h.
Definition at line 131 of file point_cloud_transformers.h.
Definition at line 140 of file point_cloud_transformers.h.
Definition at line 137 of file point_cloud_transformers.h.
Definition at line 134 of file point_cloud_transformers.h.
Definition at line 139 of file point_cloud_transformers.h.
Definition at line 133 of file point_cloud_transformers.h.
Definition at line 138 of file point_cloud_transformers.h.
Definition at line 136 of file point_cloud_transformers.h.