How can draw point or circle in image

102 visualizaciones (últimos 30 días)
Jinseok Ur
Jinseok Ur el 1 de Sept. de 2015
Comentada: Jinseok Ur el 2 de Sept. de 2015
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.. ^^

Respuesta aceptada

Image Analyst
Image Analyst el 1 de Sept. de 2015
Why can't you just use plot:
hold on;
plot(x, y, 'ro', 'MarkerSize', 30);
  1 comentario
Jinseok Ur
Jinseok Ur el 2 de Sept. de 2015
Thanks for your help ^^ circle marker is beautiful ..!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by