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

28 lines
387 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 MyThread :
public QThread
{
public:
MyThread();
~MyThread(){};
void setPcd(QString str);
PointCloud<PointXYZRGB> getCloud();
private:
string pcd;
PointCloud<PointXYZRGB> cloud;
protected:
void run();
};