try running simple wsl-command fails add Ply-File export change build-target to x64 (for wsl)
21 lines
549 B
C#
21 lines
549 B
C#
using PointCloudWeb.Server.Models;
|
|
using System.Numerics;
|
|
|
|
namespace PointCloudWeb.Server.Services
|
|
{
|
|
public class RegistrationResult
|
|
{
|
|
public RegistrationResult()
|
|
{
|
|
Transformation = Vector3.Zero;
|
|
Rotation = Vector3.Zero;
|
|
}
|
|
|
|
public Vector3 Transformation { get; set; }
|
|
public Vector3 Rotation { get; set; }
|
|
}
|
|
public interface IPointCloudRegistrationService
|
|
{
|
|
public RegistrationResult RegisterPointCloud(PointCloud source, PointCloud target);
|
|
}
|
|
} |