Skip to content
Snippets Groups Projects
Select Git revision
  • 54f0142615e1cdf6139ab975648ed25160b7aa94
  • main default protected
  • 3D_UNet
  • notebooksv1
  • scaleZYX_mean
  • notebooks
  • convert_tiff_folders
  • test
  • notebook_update
  • threshold-exploration
  • optimize_scaleZYXdask
  • layered_surface_segmentation
  • conv_zarr_tiff_folders
  • 3d_watershed
  • tr_val_te_splits
  • save_files_function
  • memmap_txrm
  • v0.4.1
  • v0.4.0
  • v0.3.9
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
  • v0.2.0
25 results

viz.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    viz.md 1.10 KiB

    Data visualization

    The qim3dlibray aims to provide easy ways to explore and get insights from volumetric data.

    !!! Example ```python import qim3d

    img = qim3d.examples.shell_225x128x128
    qim3d.viz.slices(img, n_slices=15)
    ```
    
    ![Grid of slices](assets/screenshots/viz-slices.png)

    !!! Example ```python import qim3d

    vol = qim3d.examples.bone_128x128x128
    qim3d.viz.slicer(vol)
    ```
    ![viz slicer](assets/screenshots/viz-slicer.gif)

    !!! Example ```python import qim3d

    vol = qim3d.examples.fly_150x256x256
    qim3d.viz.orthogonal(vol, cmap="magma")
    ```
    ![viz orthogonal](assets/screenshots/viz-orthogonal.gif)

    !!! Example ```python import qim3d

    vol = qim3d.examples.bone_128x128x128
    qim3d.viz.vol(vol) 
    ```
    
    <iframe src="https://platform.qim.dk/k3d/fima-bone_128x128x128-20240221113459.html" width="100%" height="500" frameborder="0"></iframe>

    ::: qim3d.viz.img options: members: - slices - slicer - orthogonal

    ::: qim3d.viz.k3d options: members: - vol