-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
41 lines (27 loc) · 950 Bytes
/
main.cpp
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
/*!
Change detection main test function.
*/
#include "common/common.hpp"
#include "pipelines.hpp"
#include "util/utilIO.hpp"
#include <map>
#include <string>
/**Main function*/
int main(int argc, char** argv){
map<int,string> inputStrings;
readCmdInput(inputStrings, argc, argv);
vcg::Color4b ver_col(1,2,3,0);
// MyMesh m;
// getPlyFileVcg(inputStrings[MESH], m);
// ver_col[0] = m.vert[0].r;
// ver_col[1] = m.vert[0].g;
// ver_col[2] = m.vert[0].b;
// std::cout << ver_col[0]<<" "<<ver_col[1]<<" "<<ver_col[2]<<std::endl;
// pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>);
//pcl::PointCloud<pcl::PointXYZ>::Ptr cloud2(new pcl::PointCloud<pcl::PointXYZ>);
//pipelineImgDifference(inputStrings, 1 , cloud, 1);
// pipelineCorrespondences(inputStrings, 1, cloud, cloud2l);
//inputStrings[CHANGEMASK] = "change_mask.ply";
// testEnerMin(inputStrings);
return 0;
}