mirror of
https://github.com/JHUAPL/Terrasaur.git
synced 2026-01-08 22:07:58 -05:00
11 lines
310 B
C++
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
|