matlab 图片上plot
时间: 2023-10-11 21:11:04 浏览: 89
在Matlab中,您可以使用以下步骤将图形绘制到图片上:
1. 导入您的背景图片作为图像:img = imread('mypicture.png');
2. 设置图片在绘制时的尺寸,确定x轴和y轴的取值范围:min_x = 0; max_x = 52.5; min_y = 0; max_y = 20;
3. 准备要绘制的图形数据,例如修改后的x坐标和y坐标:alteredX=[38.7 43.6 20.1 7.8 7.9]; alteredY=[5.5 16.8 19.1 7.5 17.6];
4. 使用imagesc函数将背景图绘制到图像上,并指定x轴和y轴的取值范围:imagesc([min_x max_x], [min_y max_y], flipdim(img,1));
(注意:如果您的图像是RGB格式的,应该使用flipdim(img, 1)而不是flipud)
5. 使用plot函数将修改后的图形数据绘制到图像上:plot(alteredX,alteredY,'r','MarkerSize',10);
6. 使用set函数设置y轴的方向为正常显示:set(gca,'ydir','normal');
这样,您就可以在图像上绘制您想要的图形了。<span class="em">1</span><span class="em">2</span>
#### 引用[.reference_title]
- *1* [matlabPIC_matlab画图_plot画图后_去掉空白地方_](https://download.csdn.net/download/weixin_42665725/26744664)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [matlab背景图片上plot绘制图形](https://blog.csdn.net/manjhOK/article/details/82803311)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文