forked from strawlab/python-pcl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminipcl.h
More file actions
20 lines (15 loc) · 698 Bytes
/
minipcl.h
File metadata and controls
20 lines (15 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _MINIPCL_H_
#define _MINIPCL_H_
#include <pcl/point_types.h>
#include <pcl/segmentation/sac_segmentation.h>
void mpcl_compute_normals(pcl::PointCloud<pcl::PointXYZ> &cloud,
int ksearch,
double searchRadius,
pcl::PointCloud<pcl::Normal> &out);
void mpcl_sacnormal_set_axis(pcl::SACSegmentationFromNormals<pcl::PointXYZ, pcl::Normal> &sac,
double ax, double ay, double az);
void mpcl_extract(pcl::PointCloud<pcl::PointXYZ> &incloud,
pcl::PointCloud<pcl::PointXYZ> &outcloud,
pcl::PointIndices *indices,
bool negative);
#endif