Add data tips to figure using code

5 ビュー (過去 30 日間)
Mika Ihatsu
Mika Ihatsu 2022 年 8 月 22 日
回答済み: Mika Ihatsu 2022 年 8 月 22 日
Hi,
I open multiple images to separate figures and drop couple of data tips manually. I want to start to automate this process but keep this same way of working so I would like have these pre added data tips when figure opens and i could move they if they are in wrong position. I have the pixel locations where i want to drop those data tips. I have googled 1000 links but havent seen any example so is this even possible?
Thx
Mika

採用された回答

Kevin Holly
Kevin Holly 2022 年 8 月 22 日
編集済み: Kevin Holly 2022 年 8 月 22 日
figure
img = rand(800,1000);
h = imagesc(img);
d = datatip(h);
d.DataIndex=353*800+355;
d.Location = "northwest";
d2 = datatip(h);
d2.DataIndex=895*800+351;
d2.Location = "northeast";
d3 = datatip(h);
d3.DataIndex=628*800+662;
d3.Location = "southwest";

その他の回答 (1 件)

Mika Ihatsu
Mika Ihatsu 2022 年 8 月 22 日
Thank you so much, exactly what i needed!

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by