Skip to content

Commit 2866b1b

Browse files
committed
Add a VolView example
1 parent 8639d23 commit 2866b1b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

notebooks/IDC_segmentation_primer.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6151,6 +6151,15 @@
61516151
"\n",
61526152
"* You can follow [this tutorial](https://tinyurl.com/idc-ohif-gcp) to deploy your own instance of the OHIF Viewer and follow instructions to create a DICOM store in GCP to visualize your own segmentation results.\n",
61536153
"* You can launch a GCP virtual machine configured with 3D Slicer following [this tutorial](https://learn.canceridc.dev/cookbook/virtual-machines/idc-desktop), copy datasets of interest to the VM and experiment with the visualization and analysis tools of 3D Slicer.\n",
6154+
"* You can also visit the [VolView webapp](https://volview.netlify.app/) and simply drag-and-drop a manifest file. VolView provides 3D, cinematic rendering in your browser and can be used with just a few minor adjustments to the manifest file:\n",
6155+
" ```python\n",
6156+
" volview_manifest = {\"resources\": []}\n",
6157+
" for url in selection_df[\"gcs_url\"]:\n",
6158+
" volview_manifest[\"resources\"].append({\"url\": url})\n",
6159+
" with open(f'{idc_download_folder}/volview_manifest.json', 'w') as fp:\n",
6160+
" json.dump(volview_manifest, fp)\n",
6161+
" ```\n",
6162+
" Then download the file to your local filesystem to drag-and-drop!\n",
61546163
"\n",
61556164
"## I want to train my network, not run inference\n",
61566165
"\n",

0 commit comments

Comments
 (0)