原始图像:
骨架化后图像:
需要安装一个NuGet包:System.Drawing.Common
代码如下:
using System.Drawing;
using System.Drawing.Imaging;
public class Image
{
public int Width { get; }
public int Height { get; }
private bool[,] pixels;
// 构造函数,初始化图像的宽度、高度和像素
public Image(in