how to plot axes onto an image

조회 수: 8 (최근 30일)
vega valentine
vega valentine 2011년 4월 11일
댓글: Tyler 2016년 12월 18일
Hi,
I have a binary image, a set of contour points, and the coordinate of center of gravity. I want to plot an axis with the origin (0,0) set to the center of gravity. And the axes should be in polar coordinate since I want to have the angle in which the contour points with maximum radius exists.
Can anyone help me with this problem? thanks before
Regards, Vga

답변 (2개)

Sarah Wait Zaranek
Sarah Wait Zaranek 2011년 4월 21일
This should help you to start with the problem. Everything is centered at the origin (0,0) but that could be adjusted by changing the position values.
% generating random "image" data
a = rand(100,100);
% initial axis
h = axes('position',[0 0 1 1]);
colormap bone
%plotting image
f1 = imagesc(a);
% add axis
h2 = axes('position',[0 0 1 1]);
t = 0:.01:2*pi;
% make polar plot
f2 = polar(h2,t,sin(2*t).*cos(2*t),'r');
% removing background of polar plot - so image shows through
ph=findall(h2,'type','patch');
set(ph,'FaceColor','none')
  댓글 수: 1
Tyler
Tyler 2016년 12월 18일
hi, your answer is really helpful! but i want to plot(scatter) some points over an image, in a new axis, but the background of the new axis is white, so i can't see the image, Can you help me with this problem? thank you !!!

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


Philip
Philip 2012년 3월 8일
Just what I needed!

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by