gpt4 book ai didi

matlab - 在图像上写数字

转载 作者:行者123 更新时间:2023-12-05 08:27:45 25 4
gpt4 key购买 nike

使用 Matlab,我想在 imshow 显示的图像内的特定位置写一个数字。目前,我有:

myimage = imread('Route of my image');
myimage = im2double(myimage);

imshow(myimage)

MyBox = uicontrol('style','text');
set(MyBox,'String',mynumber);
set(MyBox,'Position',[25,25,15,15]);

我的问题是“set”中给出的位置与管理图形窗口的所有窗口相关,因此它还包括灰色边框。如何仅相对于图形(没有灰色边框)来编写它们?

最佳答案

你可以使用 text相反?

imshow(image);
text(x,y,'your text')

关于matlab - 在图像上写数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32377955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com