Linux / amd64
The Clara Render Server (RS) provides visualization of medical data.
RS is supporting multiple different rendering algorithms and a platform to allow developers to create their own renderers and plug them into RS.
Input is 3D volume data or 2D image data together with parameters which determine how the data is rendered.
Output is a video stream or single images.
In order to run this container, it requires:
This container has been validated on a single GPU in DGX-1V and DGX-1P environments.
Before running the container, use docker pull to ensure an up-to-date image is installed. Once the pull is complete, you can run the container image.
In the Tags
section, locate the container image release that you want to run.
In the PULL TAG
column in the table, click the icon to copy the docker pull
command.
Open a command prompt and paste the pull command. The pulling of the container image begins. Ensure the pull completes successfully before proceeding to the next step.
Create input
folder that will be mounted to the container in the next steps.
mkdir -p input
Create network for Render Server.
docker network create claranet
Place 3D volume data to `input/ExposureRenderer/' folder.
Put a data set (.mhd
and .raw
files) as a sub folder on input/ExposureRenderer/
(e.g., input/ExposureRenderer/test
folder).
Run Render Server.
nvidia-docker run -it --rm -d \
--name renderserver \
--network claranet \
-p 2050:2050 \
-v `pwd`/input:/app/datasets \
nvcr.io/nvidia/clara-renderserver:linux-x86-<x.x.x>
Where:
2050
)0.1.0
. Once Render Server is launched, RS detects file changes in input
folder periodically, and data set changes are updated in Web UI (http://localhost:2050).
Stop container and remove network
If you want to stop Render Server and remove the network, execute the following commands:
docker stop renderserver
docker network rm claranet
Licenses and model files are available. They can be pulled as part of the procedure described above or available in the SDK. By pulling and using the container, you accept the terms and conditions of these licenses.
For Release Notes, Getting Started Guide and SDK, please visit the NVIDIA Developer forum (https://developer.nvidia.com/clara).
Use the NVIDIA Devtalk forum for questions regarding this Release (https://devtalk.nvidia.com/default/board/362/clara-sdk/).