Quick Start

Copy
Copied!
            

from PIL import Image import clara.viz.core import numpy as np # load a RAW CT data file (volume is 512x256x256 voxels) input = np.fromfile("CT.raw", dtype=np.int16) input = input.reshape((512, 256, 256)) # create the renderer renderer = clara.viz.core.Renderer(input) # render to a raw numpy array output = renderer.render_image(1024, 768, image_type=clara.viz.core.ImageType.RAW_RGB_U8_DEPTH_U8) output = renderer.render_image(1024, 768, image_type=clara.viz.core.ImageType.RAW_RGB_U8_DEPTH_U8) rgb_data = np.asarray(output)[:, :, :3] # show with PIL image = Image.fromarray(rgb_data) image.show()

Copy
Copied!
            

from clara.viz.widgets import Widget from clara.viz.core import Renderer import numpy as np # load a RAW CT data file (volume is 512x256x256 voxels) input = np.fromfile("CT.raw", dtype=np.int16) input = input.reshape((512, 256, 256)) display(Widget(Renderer(input)))

© Copyright 2021-2022, NVIDIA Corporation and affiliates. Last updated on Mar 31, 2022.