PCL(Point Cloud Library)을 사용할 때
detail: 애매모호한 형식입니다?
라는 오류가 발생할 때가 있다.
이것때매 정말 많이 고생했는데.... PCL을 사용할 때 아래와 같이 헤더를 적어주면 된다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | /************************************************************************/ /* PCL Header */ /************************************************************************/ // PCL Header #include <pcl/point_types.h> #include <pcl/io/pcd_io.h> #include <pcl/io/ply_io.h> #include <pcl/kdtree/kdtree_flann.h> #include <pcl/features/normal_3d_omp.h> #include <pcl/surface/gp3.h> #include <pcl/visualization/cloud_viewer.h> #include <pcl/visualization/pcl_visualizer.h> #include <pcl/octree/octree_pointcloud.h> #include <pcl/visualization/point_picking_event.h> #include <pcl/common/common.h> #include <pcl/common/transforms.h> #include <pcl/features/normal_3d.h> // define the following in order to eliminate the deprecated headers warning #define VTK_EXCLUDE_STRSTREAM_HEADERS #include <pcl/io/vtk_lib_io.h> #include <pcl/console/print.h> #include <pcl/console/parse.h> #include <pcl/console/time.h> // RangeImage: #include <pcl/range_image/range_image_planar.h> // Pop-up viewer #include <boost/thread/thread.hpp> #include <cfloat> #include <pcl/visualization/point_cloud_handlers.h> #include <pcl/visualization/histogram_visualizer.h> #include <vtkPolyDataReader.h> #include <pcl/visualization/keyboard_event.h> using namespace Eigen; using namespace pcl; using namespace pcl::console; using namespace pcl::io; /************************************************************************/ | cs |
'Programming' 카테고리의 다른 글
RealTime Mesh ★ Phaser 3 ★ Alea GPU ★ Fast 2D GPU ★ Parallel-For ★ GPU Voxel (0) | 2017.04.03 |
---|---|
[PCL] error C2661: 'pcl::PointCloud<PointT>::operator new' : no overloaded function takes 3 arguments (1) | 2017.03.30 |
폴더명 추출 및 파일명 리스트 텍스트 파일로 만들기 (0) | 2017.03.28 |
[OpenCV] RGB Color를 Grayscale로 변환하기 (0) | 2016.11.03 |
Social Tagging 데이터 셋 (Datasets) (0) | 2014.08.08 |