如何在matlab中获得用户的徒手输入



我正在尝试编写一个手写识别软件,需要用户输入。我可以成功地使用imfreehand(带参数,closed=0)函数,让用户在空白的绘图轴上书写。然而,我有两个问题:

  1. 我无法控制线条的粗细
  2. 我无法将涂鸦转换为图像

我需要做2,因为,我将把笔迹与库中存储的训练图像进行比较。

你知道如何克服这些或任何替代方案吗?

谢谢。

要先回答第二个问题,可以使用getframe。这里有一个最小的例子:

% --- Free hand drawing
imfreehand('closed', 0);
% --- Get the image
axis off
F = getframe;
Img = F.cdata;
% --- Display the image
figure
imshow(Img);

然后,要回答关于线条厚度的第一个问题,就有点棘手了。你必须得到曲线的坐标,plot,它具有所需的厚度,然后使用getframe

由于背景颜色和轴比例的原因,让应用程序的所有内容都干净会有点复杂,但这里有一个尝试:

clf
xl = get(gca, 'Xlim');
yl = get(gca, 'Ylim');
h = imfreehand('closed', 0);
% --- Get the curve coordinates
C = get(h, 'Children');
pos = C(5).Vertices;
% --- Re-plot the curve with a thick line
clf
plot(pos(:,1), pos(:,2), 'k', 'Linewidth', 5);
xlim(xl);
ylim(yl);
% --- Get the image
F = getframe;
Img = rgb2gray(F.cdata);
Img(Img>0) = 255;
% --- Display the image
clf
imshow(Img);

希望这能有所帮助!

相关内容

  • 没有找到相关文章

最新更新