0

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)

Output Image

JERMY
  • 1
  • 1
  • Does this answer your question? [How can I hide the axes in matplotlib 3d?](https://stackoverflow.com/questions/7336927/how-can-i-hide-the-axes-in-matplotlib-3d) – Julien Sep 28 '22 at 07:23

0 Answers0