フィルターのクリア

Set figure coordinates by clicking on it

7 ビュー (過去 30 日間)
Robert
Robert 2023 年 6 月 21 日
編集済み: Benjamin Kraus 2023 年 6 月 21 日
I have a program that outputs a figure, and I currently have to manually write down each point's pixel coordinates to put it back in the program. Is it possible to be able to click on points on each figure that would then be saved to a 2d array/vector. I would also prefer to be able to delete a point if I make an error. This would then be written into a .txt file. I would like the code to work like this:
For (figures 1-5):
[x,y] = capturepoints(figure[i]);
savetotxt([x.y])
end
The program does not use a GUI.

回答 (2 件)

Benjamin Kraus
Benjamin Kraus 2023 年 6 月 21 日
編集済み: Benjamin Kraus 2023 年 6 月 21 日
See if ginput does what you need. There are a few examples on the doc page.
I'm pretty sure you can replace the word capturepoints in your code with ginput and get the behavior you are looking for.
  2 件のコメント
Robert
Robert 2023 年 6 月 21 日
Will this work with pixels?
Benjamin Kraus
Benjamin Kraus 2023 年 6 月 21 日
編集済み: Benjamin Kraus 2023 年 6 月 21 日
The values returned by ginput are in data coordinates, not pixel coordinates. Unfortunately, it takes some effort to convert between data coordinates and pixel coordinates.
The basic idea is to:
  1. change the axes units to pixels
  2. use tightPosition to get the pixel position of the axes plot box
  3. divide by the xlim and ylim to get a conversion factor between pixels and data
  4. multiply that conversion factor by your data coordinates.
Of course, this only works in 2D. Doing this in 3D is significantly more complicated.
Here is an example:
xlim([0 10]); % Nice round numbers to test that the math is working.
ylim([0 100]); % Nice round numbers to test that the math is working.
[xdata,ydata] = ginput(4);
pointData = [xdata ydata];
ax = gca;
ax.Units = 'pixels';
pos = tightPosition(ax);
pixelsPerData = pos(3:4)./[diff(xlim) diff(ylim)];
pointPixels = pointData.*pixelsPerData;

サインインしてコメントする。


Menika
Menika 2023 年 6 月 21 日
編集済み: Menika 2023 年 6 月 21 日
Hi,
You might want to read about the 'ginput' and 'writematrix' functions of MATLAB. I've attached the links to respective documentations.
Hope it helps!

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by