gpt4 book ai didi

image - 在 matlab 中将链接插入图像?

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:33 25 4
gpt4 key购买 nike

我想在 matlab 中的图像中放置指向文档的链接。我有一个特定的区域,我想放置链接。例如,我希望在图像中的位置 x = 40,y = 120 处有一个带有文档地址的链接。类似于下面的内容,我知道这不是正确的 matlab 代码。

text(40,120, '<a href="C:\Documents and Settings\Sentinelle\Desktop\LCModel\sl5_knt1\sl5_11-6.pdf"; ">Click here for plot documentation</a>')

这有可能吗?我希望能够使用 imshow() 或 imtool() 并能够单击图像区域并查看文档。

最佳答案

您可以设置 'ButtonDownFcn'使用函数 OPEN 打开给定文档的文本属性:

filePath = 'C:\Documents and Settings\Sentinelle\Desktop\LCModel\sl5_knt1\sl5_11-6.pdf';
text(40,120,'Click here for plot documentation',...
'ButtonDownFcn',['open(''' filePath ''');']);

关于image - 在 matlab 中将链接插入图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6932128/

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