将x和y轴标记为图像上的笛卡尔坐标

时间:2013-10-30 20:53:36

标签: matlab axis cartesian-coordinates

我有一个2032 x 2032图像(image1)我试图使用

显示
figure(1)
imagesc(image1);

x轴和y轴显示像素数(即1-2032),其中最小值位于左上角,最大值位于右下角。

如何将x轴和y轴设置为笛卡尔坐标设置(?-1016到1016),中间位于(0,0)?

1 个答案:

答案 0 :(得分:2)

您可以在imagesc中指定轴值:

imagesc(-1016:1015,-1016:1015,image1):