Files
Terrasaur/support-libraries/altwg/strip-adjustment/closest-point-vtk.h
2025-04-24 15:17:08 -04:00

11 lines
310 B
C++

#ifndef __CLOSEST_POINT_VTK_H__
#define __CLOSEST_POINT_VTK_H__
#include "lidardata.h"
void initializeVtk(const char* dskfile);
void findClosestPointVtk(const double* origin, double* closestPoint, int* found);
void savePointCloudToVTK(const LidarPointCloud& pointCloud, const std::string& filename);
#endif