Volume data in vedo#

from vedo import Volume, settings, dataurl
from vedo.applications import RayCastPlotter

settings.default_backend = "vtk"  # or k3d, ipyvtk, or 2d
vol = Volume(dataurl + "embryo.tif")
vol.mode(1).cmap("jet")  # change appearance

vedo.volume.Volume
bounds
(x/y/z)
0 ... 1.290e+4
0 ... 8219
0 ... 1.103e+4
dimensions (125, 80, 107)
voxel spacing (104, 104, 104)
in memory size 1MB
point data array Tiff Scalars
scalar range (0, 150.0)
plt = RayCastPlotter(vol, bg="blackboard", axes=7)
plt.show(viewup="z")
plt.close()