I want to save a 3D plot as a gif. However, for reasons I cannot explain, the following code does not work. I get the error message: Image must be 2D (grayscale, RGB, or RGBA)
, when I use imageio.mimsave(...)
, but I saved my image as RGB:
import numpy as np
import matplotlib.pyplot as plt
import imageio
x = [0,1,0,0]
y = [0,0,1,0]
z = [0,0,0,1]
fig = plt.figure(figsize=(15,9))
ax = fig.add_subplot(projection='3d')
ax.scatter(x,y,z,s=1500)
images = []
for n in range(0, 100):
if n >= 20:
ax.azim = ax.azim+1.1
fig.canvas.draw()
image = np.frombuffer(fig.canvas.tostring_rgb(), dtype='uint8')
images.append(image)
imageio.mimsave('test.gif', images)