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

前端之家收集整理的这篇文章主要介绍了python – 在matplotlib中获取数据坐标中的bbox前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

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

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

  1. from matplotlib import pyplot as plt
  2. bars = plt.bar([1,2,3],[3,4,5])
  3. ax = plt.gca()
  4. fig = plt.gcf()
  5. b = bars[0].get_bBox() # bBox instance
  6. print b
  7. # Box in data coords
  8. #BBox(array([[ 1.,0. ],# [ 1.8,3. ]]))
  9. b2 = b.transformed(ax.transData)
  10. print b2
  11. # Box in display coords
  12. #BBox(array([[ 80.,48. ],# [ 212.26666667,278.4 ]]))
  13. print b2.transformed(ax.transData.inverted())
  14. # Box back in data coords
  15. #BBox(array([[ 1.,3. ]]))
  16. print b2.transformed(ax.transAxes.inverted())
  17. # Box in axes coordinates
  18. #BBox(array([[ 0.,0. ],# [ 0.26666667,0.6 ]]))

猜你在找的Python相关文章