connect to csharp

This commit is contained in:
olymrifki 2025-07-07 16:07:14 +07:00
parent 0261b94820
commit b88ff96b32
16 changed files with 336 additions and 63 deletions

View file

@ -0,0 +1,9 @@
namespace StitchImg;
public class ImageSpecification
{
public string CanvasRect { get; set; }
public IReadOnlyList<float> CropOffset { get; set; }
public IReadOnlyList<float> CropSize { get; set; }
public float OutputScale { get; set; }
}