标签: image matlab
我目前正在尝试编写一个程序,该程序采用用户输入的数字20x20像素灰度图像并预测用户绘制的数字。以下是典型用户输入的示例图像:
如何让用户绘制这样的图像?
答案 0 :(得分:0)
可能会向 ImageMagick 发出创建400x400灰度图像的信息:
convert -size 400x400 xc:gray image.bmp
然后启动 MS Paint (Windows)或 GIMP (Linux / macOS)来编辑图像。然后,当用户退出时,将图像大小调整为20x20并保存为易于读取且必须为灰度的PGM:
convert image.bmp -resize 20x20 result.pgm