This commit is contained in:
Tang1705
2020-05-24 23:15:27 +08:00
parent 5c923ee2d4
commit 5faeff5be1
50 changed files with 104666 additions and 4077 deletions

View File

@@ -3,7 +3,6 @@
#include <qthread.h>
#include <pcl/point_types.h>
#include <pcl/io/vtk_lib_io.h>
#include "CoreAlgorithm.h"
#include "PointCloudData.h"
using namespace std;
@@ -14,10 +13,13 @@ class YourThread :
{
public:
YourThread(PointCloud<PointXYZRGB> *cloud);
~YourThread(){};
~YourThread(){}
void setPath(string pathArg);
private:
PointCloud<PointXYZRGB> *cloud;
string path;
protected:
void run();
};