matlab:利用hold on 在一个figure上显示多张图

panoImage = imread('./bu.jpg');
figure()
imshow(panoImage);

[x,y] = ginput();
hold on
plot(x,y,'r*')

 

你可能感兴趣的