MyStitcher/StitchImg/ImageSpecification.cs

9 lines
255 B
C#
Raw Normal View History

2025-07-07 16:07:14 +07:00
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; }
}