-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpipelines.hpp
23 lines (16 loc) · 1.11 KB
/
pipelines.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __PIPELINES_H_
#define __PIPELINES_H_
#include <pcl/io/pcd_io.h>
#include <pcl/io/ply_io.h>
#include <pcl/point_types.h>
#include <pcl/kdtree/kdtree_flann.h>
#include <string>
#include <map>
using namespace std;
void energyMin(map<int,string> input_strings, double, const double&);
void pipelineImgDifference(map<int,string> inputStrings, int K, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >, int, double);
void pipelineCorrespondences(map<int,string> inputStrings, int K, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >);
void pipelinePSA(map<int,string> , int, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >, boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> >, int, double);
void usePSMmasks(map<int,string>, int , boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> > , boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> > , int, double);
void generateGTcloud(map<int,string>, int , boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> > , boost::shared_ptr<pcl::PointCloud<pcl::PointXYZ> > , int, double);
#endif