MyStitcher/StitchImg/ImageSpecification.cs
2025-07-07 16:07:14 +07:00

9 lines
No EOL
255 B
C#
Executable file

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; }
}