Image3D
WLJS
Wolfram Kernel
Execution environment
warning
Limited support. Only gray-scale and minimum options. Not possible to combine with Graphics3D
Image3D[data_List]
represents a 3D image with pixel values given by the 3D array data
Image3D[{image1, image2, ...}]
creates a 3D image from a list of 2D images.
Image is rendered using maximum intensity projection (MIP) and shader code developed by Martin Röhlig.
Options
ImageSize
Background
BoxRatios
ColorFunction
Possible Values
Named Palettes
"XRay""GrayLevelOpacity""Greys""OrRd"
Color Scales
PuBuBuPuOrangesBuGnYlOrBrYlGnRedsRdPuGreensYlGnBuPurplesGnBuGreysYlOrRdPuRdBluesPuBuGnViridis
Diverging Scales
SpectralRdYlGnRdBuPiYGPRGnRdYlBuBrBGRdGyPuOr
Categorical Palettes
Set2AccentSet1Set3Dark2PairedPastel2Pastel1
or one can provide a pure color function similar to Graphics, which return color based on the input value from 0 to 1.
Examples
Generate one from random numbers
Image3D[RandomReal[1, {5, 10, 10}]]
Use example data
ExampleData[{"TestImage3D", "CTengine"}]
or MRT of a brain
Image3D[ExampleData[{"TestImage3D","MRbrain"}], BoxRatios->{1,1,1/1.65}, ColorFunction->"XRay"]