add backend for registration

This commit is contained in:
Tim Wundenberg
2021-07-20 20:55:59 +02:00
parent d9873ab8cc
commit 41f3567fbc
9 changed files with 123 additions and 47 deletions

View File

@@ -0,0 +1,10 @@
using PointCloudWeb.Server.Models;
using System.Numerics;
namespace PointCloudWeb.Server.Services
{
public interface IPointCloudRegistationService
{
public Matrix4x4 RegisterPointCloud(PointCloud source, PointCloud target);
}
}