Files
Happy-Reconstruction/Classes/YourThread.h
Tang1705 5faeff5be1 v1.0
2020-05-24 23:15:27 +08:00

26 lines
391 B
C++

#pragma once
#include <qthread.h>
#include <pcl/point_types.h>
#include <pcl/io/vtk_lib_io.h>
#include "PointCloudData.h"
using namespace std;
using namespace pcl;
class YourThread :
public QThread
{
public:
YourThread(PointCloud<PointXYZRGB> *cloud);
~YourThread(){}
void setPath(string pathArg);
private:
PointCloud<PointXYZRGB> *cloud;
string path;
protected:
void run();
};