cloud_tools.h
Go to the documentation of this file.
1 /*
2  * Copyright 2013-2014, Unbounded Robotics Inc.
3  * Copyright 2011, Willow Garage, Inc. (hsv2rgb)
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  * * Neither the name of the Unbounded Robotics, Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 // Author: Michael Ferguson
32 
33 #ifndef SIMPLE_GRASPING_CLOUD_TOOLS_H
34 #define SIMPLE_GRASPING_CLOUD_TOOLS_H
35 
36 #include <Eigen/Eigen>
37 
38 #include <pcl/point_types.h>
39 #include <pcl_ros/point_cloud.h>
40 #include <pcl_ros/transforms.h>
41 
42 #include <vector>
43 
44 namespace simple_grasping
45 {
46 
56 void hsv2rgb(const float h, const float s, const float v, float& r, float& g, float& b);
57 
63 void colorizeCloud(pcl::PointCloud<pcl::PointXYZRGB>& cloud, float hue);
64 
70 template<typename PointT>
71 double distancePointToPlane(const PointT& point, const pcl::ModelCoefficients::Ptr plane)
72 {
73  Eigen::Vector4f pp(point.x, point.y, point.z, 1);
74  Eigen::Vector4f m(plane->values[0], plane->values[1], plane->values[2], plane->values[3]);
75  return pp.dot(m);
76 }
77 
83 double distancePointToPlane(const Eigen::Vector4f& point, const pcl::ModelCoefficients::Ptr plane);
84 
85 } // namespace simple_grasping
86 
87 #endif // SIMPLE_GRASPING_CLOUD_TOOLS_H
double distancePointToPlane(const PointT &point, const pcl::ModelCoefficients::Ptr plane)
Get distance from point to plane.
Definition: cloud_tools.h:71
XmlRpcServer s
void colorizeCloud(pcl::PointCloud< pcl::PointXYZRGB > &cloud, float hue)
Update rgb component of an XYZRGB cloud to a new HSV color.
Definition: cloud_tools.cpp:67
void hsv2rgb(const float h, const float s, const float v, float &r, float &g, float &b)
Fill in RGB values from HSV values.
Definition: cloud_tools.cpp:41


simple_grasping
Author(s): Michael Ferguson
autogenerated on Thu Jan 14 2021 03:20:55