How can draw point or circle in image

103 次查看(过去 30 天)
Hi, i'm trying to make time series point in image
i used like this
----
image1=imread('xx.jpg')
for s=1:length(aa)
rgb{s}=insertMarker(image1,[aa,bb])
imshow(rgb{s}
end
------
in this code aa and bb is pixel position ..
i want draw circle or point in image by time..
the question is two.
1. how can i draw circle of point in image pixel position.
2. what it beautiful methods to draw time series pointing
Thanks ..
want to draw like Eye Tracking.. ^^

采纳的回答

Image Analyst
Image Analyst 2015-9-1
Why can't you just use plot:
hold on;
plot(x, y, 'ro', 'MarkerSize', 30);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geometric 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