pcl_wrapper_test/Program.cs

18 lines
411 B
C#

using System;
using System.Runtime.InteropServices;
class Program
{
static void Main()
{
using var cloud = new PclPointCloudXYZ();
cloud.Load("./dataset/0.pcd");
using var voxel = new PclVoxelGridXYZ();
voxel.SetLeafSize(0.1f, 0.1f, 0.1f);
voxel.SetInputCloud(cloud);
using var filtered = voxel.Filter();
filtered.Save("output.pcd");
}
}