#include <pcl/PCLPointCloud2.h>
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/console/print.h>
#include <pcl/console/parse.h>
#include <pcl/console/time.h>
#include <pcl/surface/mls.h>
#include <pcl/filters/voxel_grid.h>
Go to the source code of this file.
Functions | |
void | compute (const pcl::PCLPointCloud2::ConstPtr &input, pcl::PCLPointCloud2 &output, double search_radius, bool sqr_gauss_param_set, double sqr_gauss_param, bool use_polynomial_fit, int polynomial_order) |
bool | loadCloud (const std::string &filename, pcl::PCLPointCloud2 &cloud) |
int | main (int argc, char **argv) |
void | printHelp (int, char **argv) |
void | saveCloud (const std::string &filename, const pcl::PCLPointCloud2 &output) |
Variables | |
int | default_polynomial_order = 2 |
double | default_search_radius = 0.0 |
double | default_sqr_gauss_param = 0.0 |
bool | default_use_polynomial_fit = false |
void compute | ( | const pcl::PCLPointCloud2::ConstPtr & | input, |
pcl::PCLPointCloud2 & | output, | ||
double | search_radius, | ||
bool | sqr_gauss_param_set, | ||
double | sqr_gauss_param, | ||
bool | use_polynomial_fit, | ||
int | polynomial_order | ||
) |
Definition at line 88 of file mls_smoothing.cpp.
bool loadCloud | ( | const std::string & | filename, |
pcl::PCLPointCloud2 & | cloud | ||
) |
Definition at line 73 of file mls_smoothing.cpp.
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 157 of file mls_smoothing.cpp.
void printHelp | ( | int | , |
char ** | argv | ||
) |
Definition at line 58 of file mls_smoothing.cpp.
void saveCloud | ( | const std::string & | filename, |
const pcl::PCLPointCloud2 & | output | ||
) |
Definition at line 142 of file mls_smoothing.cpp.
int default_polynomial_order = 2 |
Definition at line 51 of file mls_smoothing.cpp.
double default_search_radius = 0.0 |
Definition at line 53 of file mls_smoothing.cpp.
double default_sqr_gauss_param = 0.0 |
Definition at line 54 of file mls_smoothing.cpp.
bool default_use_polynomial_fit = false |
Definition at line 52 of file mls_smoothing.cpp.