ipyvolume
ipyvolume copied to clipboard
How to remove the scale values in the x, y, and z directions?
Hi,
I recently used Ipyvolume for plotting 3D array. The question is how to remove the scale values in the x, y, and z directions? Thank you.
The code I used is as follows
V=np.load('E:/XX/XX/XX/m.npy')
ipv.quickvolshow(V, level=[0.25, 0.75], opacity=0.03, level_width=0.1, data_min=None, data_max=None, stereo=False,extent=None)
Regards, Mason
How about
fig.xlabel = ''
fig.ylabel = ''
fig.zlabel = ''
ipv.style.axes_off()
ipv.style.box_off()