24 lines
535 B
C++
24 lines
535 B
C++
/**
|
|
* @file MeshResample.h
|
|
* @brief None
|
|
* @author 陈增辉 (3045316072@qq.com)
|
|
* @version 2.5.0
|
|
* @date 24-5-23
|
|
* @copyright Copyright (c) Since 2024 中科卫星应用研究院 All rights reserved.
|
|
*/
|
|
|
|
#ifndef LAMPCAE_MESHRESAMPLE_H
|
|
#define LAMPCAE_MESHRESAMPLE_H
|
|
|
|
#include <vtkPolyData.h>
|
|
namespace PointMeshAlgorithm {
|
|
|
|
class MeshResample {
|
|
public:
|
|
static vtkSmartPointer<vtkDataSet> MeshSurfaceSampling(vtkSmartPointer<vtkDataSet> Insurface);
|
|
};
|
|
|
|
} // namespace PointCloudOperator
|
|
|
|
#endif // LAMPCAE_MESHRESAMPLE_H
|