在matplotlib中获取数据坐标中的bbox

时间:2011-03-29 00:19:19

标签: python matplotlib transformation

我在显示坐标中有bboxmatplotlib.patches.Rectangle对象(条形图中的条形),如下所示:

Bbox(array([[ 0.,  0.],[ 1.,  1.]])

但我希望不是在显示坐标而是数据坐标。我很确定这需要改造。这样做的方法是什么?

1 个答案:

答案 0 :(得分:14)

我不确定你是如何在显示坐标中获得Bbox的。用户与之交互的几乎所有内容都在数据坐标中(对我来说看起来像轴或数据坐标,而不是显示像素)。以下内容应充分说明适用于Bbox的转换:

from matplotlib import pyplot as plt
bars = plt.bar([1,2,3],[3,4,5])
ax = plt.gca()
fig = plt.gcf()
b = bars[0].get_bbox()  # bbox instance

print b
# box in data coords
#Bbox(array([[ 1. ,  0. ],
#       [ 1.8,  3. ]]))

b2 = b.transformed(ax.transData)
print b2
# box in display coords
#Bbox(array([[  80.        ,   48.        ],
#       [ 212.26666667,  278.4       ]]))

print b2.transformed(ax.transData.inverted())
# box back in data coords
#Bbox(array([[ 1. ,  0. ],
#       [ 1.8,  3. ]]))

print b2.transformed(ax.transAxes.inverted())
# box in axes coordinates
#Bbox(array([[ 0.        ,  0.        ],
#       [ 0.26666667,  0.6       ]]))