How can draw point or circle in image

조회 수: 102 (최근 30일)
Jinseok Ur
Jinseok Ur 2015년 9월 1일
댓글: Jinseok Ur 2015년 9월 2일
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);
  댓글 수: 1
Jinseok Ur
Jinseok Ur 2015년 9월 2일
Thanks for your help ^^ circle marker is beautiful ..!

댓글을 달려면 로그인하십시오.

추가 답변 (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