Files
UVtools/UVtools.Core/Objects/Kernel.cs
T
2020-09-08 22:52:13 +01:00

22 lines
530 B
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
using System.Drawing;
using Emgu.CV;
namespace UVtools.Core.Objects
{
public sealed class Kernel
{
public Matrix<byte> Matrix { get; set; }
public Point Anchor { get; set; }
}
}