#include <gtest/gtest.h>#include <pcl/point_types.h>#include <pcl/io/pcd_io.h>#include <pcl/io/vtk_io.h>#include <pcl/features/normal_3d.h>#include <pcl/surface/mls.h>#include <pcl/common/common.h>
Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| TEST (PCL, MovingLeastSquares) | |
Variables | |
| PointCloud< PointXYZ >::Ptr | cloud (new PointCloud< PointXYZ >) |
| PointCloud< PointXYZ >::Ptr | cloud1 (new PointCloud< PointXYZ >) |
| PointCloud< PointNormal >::Ptr | cloud_with_normals (new PointCloud< PointNormal >) |
| PointCloud< PointNormal >::Ptr | cloud_with_normals1 (new PointCloud< PointNormal >) |
| search::KdTree< PointXYZ >::Ptr | tree |
| search::KdTree< PointNormal >::Ptr | tree2 |
| search::KdTree< PointXYZ >::Ptr | tree3 |
| search::KdTree< PointNormal >::Ptr | tree4 |
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 178 of file test_moving_least_squares.cpp.
| TEST | ( | PCL | , |
| MovingLeastSquares | |||
| ) |
TODO Would need to set a seed point here for the random number generator But as long as the other 2 upsampling methods work fine, this should have no issues. The RANDOM_UNIFORM_DENSITY upsampling will be changed soon anyway, hopefully in PCL 1.6.1
Definition at line 65 of file test_moving_least_squares.cpp.
| PointCloud<PointXYZ>::Ptr cloud(new PointCloud< PointXYZ >) |
| PointCloud<PointXYZ>::Ptr cloud1(new PointCloud< PointXYZ >) |
| PointCloud<PointNormal>::Ptr cloud_with_normals(new PointCloud< PointNormal >) |
| PointCloud<PointNormal>::Ptr cloud_with_normals1(new PointCloud< PointNormal >) |
| search::KdTree<PointXYZ>::Ptr tree |
Definition at line 55 of file test_moving_least_squares.cpp.
| search::KdTree<PointNormal>::Ptr tree2 |
Definition at line 56 of file test_moving_least_squares.cpp.
| search::KdTree<PointXYZ>::Ptr tree3 |
Definition at line 61 of file test_moving_least_squares.cpp.
| search::KdTree<PointNormal>::Ptr tree4 |
Definition at line 62 of file test_moving_least_squares.cpp.