#include <boost/algorithm/string.hpp>
#include <vector>
#include <boost/lexical_cast.hpp>
#include <boost/accumulators/accumulators.hpp>
#include <boost/accumulators/statistics/stats.hpp>
#include <boost/accumulators/statistics/median.hpp>
#include <boost/accumulators/statistics/weighted_median.hpp>
#include "util.h"
Go to the source code of this file.
Namespaces | |
descriptor_surface_based_recognition | |
Functions | |
Eigen::Vector3d | descriptor_surface_based_recognition::computeMedian (std::vector< Eigen::Vector3d > points) |
Computes the median of the given points. More... | |
pcl::PointXYZ | descriptor_surface_based_recognition::computeMedian (std::vector< pcl::PointXYZ > points) |
Computes the median of the given points. More... | |
pcl::PointXYZ | descriptor_surface_based_recognition::findPoint3D (pcl::PointCloud< pcl::PointXYZ >::Ptr cloud, pcl::PointXYZ current_point, int row, int column, int image_height, int image_width) |
Finds the corresponding 3D point to the given 2D point. More... | |
rgb | descriptor_surface_based_recognition::hsv2rgb (hsv in) |
Converts the given hsv-color to rgb. More... | |
Eigen::Vector3d | descriptor_surface_based_recognition::parseStringVector (std::string input_string, std::string delim) |
Parses the given string and returns the 3D-double-vector described by it. More... | |
Eigen::Vector2i | descriptor_surface_based_recognition::parseStringVector2i (std::string input_string, std::string delim) |
Parses the given string and returns the 2D-int-vector described by it. More... | |