#include <type_traits>
#include <arpa/inet.h>
#include <Eigen/Geometry>
#include <sensor_msgs/PointCloud2.h>
Go to the source code of this file.
Namespaces | |
multisense_ros | |
Functions | |
template<typename PointT , typename ColorT > | |
sensor_msgs::PointCloud2 | multisense_ros::initializePointcloud (const ros::Time &stamp, const size_t width, const size_t height, const bool dense, const std::string &frame_id, const std::string &color_channel) |
template<typename PointT , typename ColorT > | |
void | multisense_ros::initializePointcloud (sensor_msgs::PointCloud2 &point_cloud, const ros::Time &stamp, const size_t width, const size_t height, const bool dense, const std::string &frame_id, const std::string &color_channel) |
template<typename ColorT > | |
std::enable_if<!std::is_same< ColorT, void >::value, void >::type | multisense_ros::initPointcloudColorChannel (sensor_msgs::PointCloud2 &point_cloud, const size_t offset, const std::string &color_channel) |
template<typename ColorT > | |
std::enable_if< std::is_same< ColorT, void >::value, void >::type | multisense_ros::initPointcloudColorChannel (sensor_msgs::PointCloud2 &point_cloud, const size_t offset, const std::string &color_channel) |
template<typename T > | |
uint8_t | multisense_ros::messageFormat () |
void | multisense_ros::writePoint (sensor_msgs::PointCloud2 &pointcloud, const size_t index, const Eigen::Vector3f &point) |
template<typename ColorT > | |
void | multisense_ros::writePoint (sensor_msgs::PointCloud2 &pointcloud, const size_t index, const Eigen::Vector3f &point, const ColorT &color) |
void | multisense_ros::writePoint (sensor_msgs::PointCloud2 &pointcloud, const size_t pointcloud_index, const Eigen::Vector3f &point, const size_t image_index, const uint32_t bitsPerPixel, const void *imageDataP) |
Copyright 2020 Carnegie Robotics, LLC 4501 Hatfield Street, Pittsburgh, PA 15201 http://www.carnegierobotics.com
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE ROBOTICS, LLC BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file point_cloud_utilities.h.