Set figure coordinates by clicking on it
11 views (last 30 days)
Show older comments
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.
0 Comments
Answers (2)
Benjamin Kraus
on 21 Jun 2023
Edited: Benjamin Kraus
on 21 Jun 2023
I'm pretty sure you can replace the word capturepoints in your code with ginput and get the behavior you are looking for.
2 Comments
Benjamin Kraus
on 21 Jun 2023
Edited: Benjamin Kraus
on 21 Jun 2023
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:
- change the axes units to pixels
- use tightPosition to get the pixel position of the axes plot box
- divide by the xlim and ylim to get a conversion factor between pixels and data
- 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
on 21 Jun 2023
Edited: Menika
on 21 Jun 2023
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!
0 Comments
See Also
Categories
Find more on Data Exploration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!