9 lines
255 B
C#
9 lines
255 B
C#
|
|
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; }
|
||
|
|
}
|