How to find coordiates of the LAST point of the aray which has been plotted?
Show older comments
Hello! I have plotted a few time series on a graph. I need to be able to crop out a certain a fixed part (rectangle area 1000x1000 pixels) For this I was able to find this code:
imagesize=size(I);
xsize=imagesize(1,2)
ysize=imagesize(1,1)
xziseout=xsize-xsize*0.3
yziseout=ysize/2-ysize/5;
I2 = imcrop(I,[xziseout yziseout 1000 1000]); % [xmin ymin width height]
imshow(I)
figure, imshow(I2)
print('-dpng', printnamepngfile, '-r350')
I am using this code to roughly get the area out of the center of the picture but it fails because I actually need to focus on cpecific pixel. This pixel is the last point of a plotted array. I wonder how I can get pixel coordinates of the last data point that was plotted n a chart. I need these XY coordinates to be relative to the absolute pixel height and width of the output picture.
Thanking many times for any help in this matter!!!
Dima
Answers (2)
Image Analyst
on 10 Aug 2014
0 votes
You forgot to attach the picture. I don't know if you have an image, or if you have some kind of 1D data plotted as a line chart in an axes, or an image of a graph. I don't understand why you say "plotted". Generally images are "displayed", not "plotted". And I don't know what you mean by the last point. Do you mean I(end, end), or I2(end, end)????
9 Comments
Dima
on 10 Aug 2014
Image Analyst
on 10 Aug 2014
The last point plotted was (0, sin(0)).
Dima
on 11 Aug 2014
Dima
on 11 Aug 2014
Image Analyst
on 11 Aug 2014
Why do you need the pixel coordinates? You'd probably have to call getframe and then do some sort of spatial calibration, which would involve knowing where the origin (pixel coordinates) of the graph was, along with one other point that's known.
Dima
on 12 Aug 2014
Image Analyst
on 12 Aug 2014
Why not just use imresize() to create a thumbnail image????
Michael Haderlein
on 12 Aug 2014
So I believe you know the position inside the axis you want to focus, right? Let's say you've plotted something between x=100:102 and y=-90:-88 and you want to get the position of the center point (101,-89). You first need the relative position inside the axis and then get the absolute position (e.g. in pixels):
figure, axes, plot(100:102,-90:-88)
x=101;y=-89;
lim=get(gca,{'xlim','ylim'});
xfrac=(x-lim{1}(1))/diff(lim{1});
yfrac=(y-lim{2}(1))/diff(lim{2});
ax_units=get(gca,'units');
set(gca,'units','pixels');
ax_pos=get(gca,'position');
x_abs=ax_pos(1)+xfrac*ax_pos(3)
y_abs=ax_pos(2)+yfrac*ax_pos(4)
set(gca,'units',ax_units)
Hope this helps.
Categories
Find more on Annotations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!