I'm trying to plot voxel data in matplotlib (python) In my code, I want to remove the backgroud of my plot. Also, Is there any method to rotate my plotting as like the Pyntcloud or other visualization tool?
Here is my code and the output figure.
import matplotlib.pyplot as plt
fig =plt.figure()
ax =fig.add_subplot(projection='3d')
ax.grid(False)
ax.set_xticks([])
ax.set_yticks([])
ax.set_zticks([])
ax.voxels(xyz_load)