Python 我的matplotlib艺术表现出了什么问题?

Python 我的matplotlib艺术表现出了什么问题?,python,animation,matplotlib,Python,Animation,Matplotlib,我试图创建一个动画使用以下代码,但我不能让它工作 def plotSimulation(currentState, startState): import matplotlib.pyplot as plt import matplotlib.animation as ani import numpy as np import matplotlib.patches as mpatches import matplotlib.collections as collect

我试图创建一个动画使用以下代码,但我不能让它工作

def plotSimulation(currentState, startState):
   import matplotlib.pyplot as plt
   import matplotlib.animation as ani
   import numpy as np
   import matplotlib.patches as mpatches
   import matplotlib.collections as collections

   fig1 = plt.figure()
   ax = plt.subplot()

   numberOfFrames = currentState.shape[2]


   frames = []

   for frame in np.arange(numberOfFrames):
      carPatches = []
      for car in range(0, currentState.shape[0]):
          carPatches.append(mpatches.Rectangle([currentState[car,0,frame],currentState[car,1,frame]], startState[car, 2], startState[car, 3], angle=startState[car, 4]))
      carCollection = collections.PatchCollection(carPatches)
      frames.append((carCollection,))


   simulationAnimation = ani.ArtistAnimation(fig1, frames, interval=50, repeat_delay=300, blit=False)

   plt.show()
我试着照搬这个例子

动画如图2所示

但当我尝试运行动画时,我得到:

File "...plotIteration.py", line 24, in plotSimulation
  simulationAnimation = ani.ArtistAnimation(fig1, frames, interval=50, repeat_delay=300, blit=False)

File ".../python/matplotlib/animation.py", line 934, in __init__
  TimedAnimation.__init__(self, fig, *args, **kwargs)

File ".../python/matplotlib/animation.py", line 878, in __init__
  *args, **kwargs)

File ".../python/matplotlib/animation.py", line 559, in __init__
  self._init_draw()

File ".../Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/animation.py", line 948, in _init_draw
  ax.figure.canvas.draw()

AttributeError: 'NoneType' object has no attribute 'figure'

我认为问题在于您已经创建了
补丁集合
,但尚未将它们添加到轴中。你应该可以用它来做这件事

尝试将添加
carCollection
frames
的行更改为类似以下内容:

frames.append(ax.add_collection(carCollection))