Data visualization
The qim3d
library aims to provide easy ways to explore and get insights from volumetric data.
qim3d.viz
qim3d.viz.histogram
histogram(volume, bins='auto', slice_idx=None, vertical_line=None, axis=0, kde=True, log_scale=False, despine=True, show_title=True, color='qim3d', edgecolor=None, figsize=(8, 4.5), element='step', return_fig=False, show=True, ax=None, **sns_kwargs)
Plots a histogram of voxel intensities from a 3D volume, with options to show a specific slice or the entire volume.
Utilizes seaborn.histplot for visualization.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
A 3D NumPy array representing the volume to be visualized. |
required |
bins |
Union[int, str]
|
Number of histogram bins or a binning strategy (e.g., "auto"). Default is "auto". |
'auto'
|
axis |
int
|
Axis along which to take a slice. Default is 0. |
0
|
slice_idx |
Union[int, str]
|
Specifies the slice to visualize. If an integer, it represents the slice index along the selected axis. If "middle", the function uses the middle slice. If None, the entire volume is visualized. Default is None. |
None
|
vertical_line |
int
|
Intensity value for a vertical line to be drawn on the histogram. Default is None. |
None
|
kde |
bool
|
Whether to overlay a kernel density estimate. Default is True. |
True
|
log_scale |
bool
|
Whether to use a logarithmic scale on the y-axis. Default is False. |
False
|
despine |
bool
|
If True, removes the top and right spines from the plot for cleaner appearance. Default is True. |
True
|
show_title |
bool
|
If True, displays a title with slice information. Default is True. |
True
|
color |
str
|
Color for the histogram bars. If "qim3d", defaults to the qim3d color. Default is "qim3d". |
'qim3d'
|
edgecolor |
str
|
Color for the edges of the histogram bars. Default is None. |
None
|
figsize |
tuple
|
Size of the figure (width, height). Default is (8, 4.5). |
(8, 4.5)
|
element |
str
|
Type of histogram to draw ('bars', 'step', or 'poly'). Default is "step". |
'step'
|
return_fig |
bool
|
If True, returns the figure object instead of showing it directly. Default is False. |
False
|
show |
bool
|
If True, displays the plot. If False, suppresses display. Default is True. |
True
|
ax |
Axes
|
Axes object where the histogram will be plotted. Default is None. |
None
|
**sns_kwargs |
Union[str, float, int, bool]
|
Additional keyword arguments for |
{}
|
Returns:
Type | Description |
---|---|
Optional[Union[Figure, Axes]]
|
Optional[matplotlib.figure.Figure or matplotlib.axes.Axes]:
If |
Raises:
Type | Description |
---|---|
ValueError
|
If |
ValueError
|
If |
Source code in qim3d/viz/_data_exploration.py
889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 |
|
qim3d.viz.slicer
slicer(volume, slice_axis=0, color_map='magma', value_min=None, value_max=None, image_height=3, image_width=3, display_positions=False, interpolation=None, image_size=None, color_bar=None, **matplotlib_imshow_kwargs)
Interactive widget for visualizing slices of a 3D volume.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The 3D volume to be sliced. |
required |
slice_axis |
int
|
Specifies the axis, or dimension, along which to slice. Defaults to 0. |
0
|
color_map |
str or LinearSegmentedColormap
|
Specifies the color map for the image. Defaults to 'magma'. |
'magma'
|
value_min |
float
|
Together with value_max define the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
value_max |
float
|
Together with value_min define the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
image_height |
int
|
Height of the figure. Defaults to 3. |
3
|
image_width |
int
|
Width of the figure. Defaults to 3. |
3
|
display_positions |
bool
|
If True, displays the position of the slices. Defaults to False. |
False
|
interpolation |
str
|
Specifies the interpolation method for the image. Defaults to None. |
None
|
color_bar |
str
|
Controls the options for color bar. If None, no color bar is included. If 'volume', the color map range is constant for each slice. If 'slices', the color map range changes dynamically according to the slice. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
slicer_obj |
interactive
|
The interactive widget for visualizing slices of a 3D volume. |
Source code in qim3d/viz/_data_exploration.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
|
qim3d.viz.slices_grid
slices_grid(volume, slice_axis=0, slice_positions=None, num_slices=15, max_columns=5, color_map='magma', value_min=None, value_max=None, image_size=None, image_height=2, image_width=2, display_figure=False, display_positions=True, interpolation=None, color_bar=False, color_bar_style='small', **matplotlib_imshow_kwargs)
Displays one or several slices from a 3d volume.
By default if slice_positions
is None, slices_grid plots num_slices
linearly spaced slices.
If slice_positions
is given as a string or integer, slices_grid will plot an overview with num_slices
figures around that position.
If slice_positions
is given as a list, num_slices
will be ignored and the slices from slice_positions
will be plotted.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The 3D volume to be sliced. |
required |
slice_axis |
int
|
Specifies the axis, or dimension, along which to slice. Defaults to 0. |
0
|
slice_positions |
int or list[int] or str or None
|
One or several slicing levels. If None, linearly spaced slices will be displayed. Defaults to None. |
None
|
num_slices |
int
|
Defines how many slices the user wants to be displayed. Defaults to 15. |
15
|
max_columns |
int
|
The maximum number of columns to be plotted. Defaults to 5. |
5
|
color_map |
str or LinearSegmentedColormap
|
Specifies the color map for the image. Defaults to "magma". |
'magma'
|
value_min |
float
|
Together with value_max define the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
value_max |
float
|
Together with value_min define the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
image_height |
int
|
Height of the figure. |
2
|
image_width |
int
|
Width of the figure. |
2
|
display_figure |
bool
|
If True, displays the plot (i.e. calls plt.show()). Defaults to False. |
False
|
display_positions |
bool
|
If True, displays the position of the slices. Defaults to True. |
True
|
interpolation |
str
|
Specifies the interpolation method for the image. Defaults to None. |
None
|
color_bar |
bool
|
Adds a colorbar positioned in the top-right for the corresponding colormap and data range. Defaults to False. |
False
|
color_bar_style |
str
|
Determines the style of the colorbar. Option 'small' is height of one image row. Option 'large' spans full height of image grid. Defaults to 'small'. |
'small'
|
Returns:
Name | Type | Description |
---|---|---|
fig |
Figure
|
The figure with the slices from the 3d array. |
Raises:
Type | Description |
---|---|
ValueError
|
If the input is not a numpy.ndarray or da.core.Array. |
ValueError
|
If the slice_axis to slice along is not a valid choice, i.e. not an integer between 0 and the number of dimensions of the volume minus 1. |
ValueError
|
If the file or array is not a volume with at least 3 dimensions. |
ValueError
|
If the |
ValueError
|
If the color_bar_style keyword argument is not one of the following strings: 'small' or 'large'. |
Example

Source code in qim3d/viz/_data_exploration.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
qim3d.viz.slicer_orthogonal
slicer_orthogonal(volume, color_map='magma', value_min=None, value_max=None, image_height=3, image_width=3, display_positions=False, interpolation=None, image_size=None)
Interactive widget for visualizing orthogonal slices of a 3D volume.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The 3D volume to be sliced. |
required |
color_map |
str or LinearSegmentedColormap
|
Specifies the color map for the image. Defaults to "magma". |
'magma'
|
value_min |
float
|
Together with value_max define the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
value_max |
float
|
Together with value_min define the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
image_height |
int
|
Height of the figure. |
3
|
image_width |
int
|
Width of the figure. |
3
|
display_positions |
bool
|
If True, displays the position of the slices. Defaults to False. |
False
|
interpolation |
str
|
Specifies the interpolation method for the image. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
slicer_orthogonal_obj |
HBox
|
The interactive widget for visualizing orthogonal slices of a 3D volume. |
Example
import qim3d
vol = qim3d.examples.fly_150x256x256
qim3d.viz.slicer_orthogonal(vol, color_map="magma")

Source code in qim3d/viz/_data_exploration.py
qim3d.viz.circles
Plots the blobs found on a slice of the volume.
This function takes in a 3D volume and a list of blobs (detected features) and plots the blobs on a specified slice of the volume. If no slice is specified, it defaults to the middle slice of the volume.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
blobs |
ndarray
|
An array-like object of blobs, where each blob is represented
as a 4-tuple (p, r, c, radius). Usually the result of |
required |
vol |
ndarray
|
The 3D volume on which to plot the blobs. |
required |
alpha |
float
|
The transparency of the blobs. Defaults to 0.5. |
0.5
|
color |
str
|
The color of the blobs. Defaults to "#ff9900". |
'#ff9900'
|
**kwargs |
Any
|
Arbitrary keyword arguments for the |
{}
|
Returns:
Name | Type | Description |
---|---|---|
slicer_obj |
interactive
|
An interactive widget for visualizing the blobs. |
Example
import qim3d
import qim3d.detection
# Get data
vol = qim3d.examples.cement_128x128x128
# Detect blobs, and get binary mask
blobs, _ = qim3d.detection.blobs(
vol,
min_sigma=1,
max_sigma=8,
threshold=0.001,
overlap=0.1,
background="bright"
)
# Visualize detected blobs with circles method
qim3d.viz.circles(blobs, vol, alpha=0.8, color='blue')

Source code in qim3d/viz/_detection.py
qim3d.viz.chunks
Function to visualize chunks of a Zarr dataset using the specified visualization method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
zarr_path |
str or PathLike
|
Path to the Zarr dataset. |
required |
**kwargs |
Any
|
Additional keyword arguments to pass to the visualization method. |
{}
|
Example
import qim3d
# Download dataset
downloader = qim3d.io.Downloader()
data = downloader.Snail.Escargot(load_file=True)
# Export as OME-Zarr
qim3d.io.export_ome_zarr("Escargot.zarr", data, chunk_size=100, downsample_rate=2, replace=True)
# Explore chunks
qim3d.viz.chunks("Escargot.zarr")

Source code in qim3d/viz/_data_exploration.py
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 |
|
qim3d.viz.itk_vtk
Command to run in cli/init.py. Tries to run the vizualization, if that fails, asks the user to install it. This function is needed here so we don't have to import NotInstalledError and Installer, which exposes these to user.
Source code in qim3d/viz/itk_vtk_viewer/run.py
qim3d.viz.volumetric
volumetric(img, aspectmode='data', show=True, save=False, grid_visible=False, color_map='magma', constant_opacity=False, vmin=None, vmax=None, samples='auto', max_voxels=512 ** 3, data_type='scaled_float16', **kwargs)
Visualizes a 3D volume using volumetric rendering.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
img |
ndarray
|
The input 3D image data. It should be a 3D numpy array. |
required |
aspectmode |
str
|
Determines the proportions of the scene's axes. Defaults to "data".
If |
'data'
|
show |
bool
|
If True, displays the visualization inline. Defaults to True. |
True
|
save |
bool or str
|
If True, saves the visualization as an HTML file. If a string is provided, it's interpreted as the file path where the HTML file will be saved. Defaults to False. |
False
|
grid_visible |
bool
|
If True, the grid is visible in the plot. Defaults to False. |
False
|
color_map |
str or Colormap or list
|
The color map to be used for the volume rendering. If a string is passed, it should be a matplotlib colormap name. Defaults to 'magma'. |
'magma'
|
constant_opacity |
bool
|
Set to True if doing an object label visualization with a corresponding color_map; otherwise, the plot may appear poorly. Defaults to False. |
False
|
vmin |
float or None
|
Together with vmax defines the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
vmax |
float or None
|
Together with vmin defines the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
samples |
int or auto
|
The number of samples to be used for the volume rendering in k3d. Input 'auto' for auto selection. Defaults to 'auto'. Lower values will render faster but with lower quality. |
'auto'
|
max_voxels |
int
|
Defaults to 512^3. |
512 ** 3
|
data_type |
str
|
Default to 'scaled_float16'. |
'scaled_float16'
|
**kwargs |
Any
|
Additional keyword arguments to be passed to the |
{}
|
Returns:
Name | Type | Description |
---|---|---|
plot |
plot
|
If |
Raises:
Type | Description |
---|---|
ValueError
|
If |
Tip
The function can be used for object label visualization using a color_map
created with qim3d.viz.colormaps.objects
along with setting objects=True
. The latter ensures appropriate rendering.
Example
Display a volume inline:
Save a plot to an HTML file:
Source code in qim3d/viz/_k3d.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
qim3d.viz.mesh
mesh(mesh, backend='pygel3d', wireframe=True, flat_shading=True, grid_visible=False, show=True, save=False, **kwargs)
Visualize a 3D mesh using pygel3d
or k3d
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mesh |
Manifold
|
The input mesh object. |
required |
backend |
str
|
The visualization backend to use.
Choose between |
'pygel3d'
|
wireframe |
bool
|
If True, displays the mesh as a wireframe.
Works both with |
True
|
flat_shading |
bool
|
If True, applies flat shading to the mesh.
Works only with |
True
|
grid_visible |
bool
|
If True, shows a grid in the visualization.
Works only with |
False
|
show |
bool
|
If True, displays the visualization inline.
Works only with |
True
|
save |
bool or str
|
If True, saves the visualization as an HTML file.
If a string is provided, it's interpreted as the file path where the HTML
file will be saved. Works only with |
False
|
**kwargs |
Any
|
Additional keyword arguments specific to the chosen backend:
|
{}
|
Returns:
Type | Description |
---|---|
Optional[Plot]
|
k3d.Plot or None:
|
Raises:
Type | Description |
---|---|
ValueError
|
If |
Example
Source code in qim3d/viz/_k3d.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
qim3d.viz.local_thickness
local_thickness(image, image_lt, max_projection=False, axis=0, slice_idx=None, show=False, figsize=(15, 5))
Visualizes the local thickness of a 2D or 3D image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image |
ndarray
|
2D or 3D NumPy array representing the image/volume. |
required |
image_lt |
ndarray
|
2D or 3D NumPy array representing the local thickness of the input image/volume. |
required |
max_projection |
bool
|
If True, displays the maximum projection of the local thickness. Only used for 3D images. Defaults to False. |
False
|
axis |
int
|
The axis along which to visualize the local thickness. Unused for 2D images. Defaults to 0. |
0
|
slice_idx |
int or float
|
The initial slice to be visualized. The slice index can afterwards be changed. If value is an integer, it will be the index of the slice to be visualized. If value is a float between 0 and 1, it will be multiplied by the number of slices and rounded to the nearest integer. If None, the middle slice will be used for 3D images. Unused for 2D images. Defaults to None. |
None
|
show |
bool
|
If True, displays the plot (i.e. calls plt.show()). Defaults to False. |
False
|
figsize |
tuple
|
The size of the figure. Defaults to (15, 5). |
(15, 5)
|
Raises:
Type | Description |
---|---|
ValueError
|
If the slice index is not an integer or a float between 0 and 1. |
Returns:
Name | Type | Description |
---|---|---|
local_thickness |
interactive or Figure
|
If the input is 3D, returns an interactive widget. Otherwise, returns a matplotlib figure. |
Example
import qim3d
fly = qim3d.examples.fly_150x256x256
lt_fly = qim3d.processing.local_thickness(fly)
qim3d.viz.local_thickness(fly, lt_fly, axis=0)

Source code in qim3d/viz/_local_thickness.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|
qim3d.viz.vectors
vectors(volume, vec, axis=0, volume_cmap='grey', vmin=None, vmax=None, slice_idx=None, grid_size=10, interactive=True, figsize=(10, 5), show=False)
Visualizes the orientation of the structures in a 3D volume using the eigenvectors of the structure tensor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The 3D volume to be sliced. |
required |
vec |
ndarray
|
The eigenvectors of the structure tensor. |
required |
axis |
int
|
The axis along which to visualize the orientation. Defaults to 0. |
0
|
volume_cmap |
str
|
Defines colormap for display of the volume |
'grey'
|
vmin |
float
|
Together with vmax define the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
vmax |
float
|
Together with vmin define the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
slice_idx |
int or float or None
|
The initial slice to be visualized. The slice index can afterwards be changed. If value is an integer, it will be the index of the slice to be visualized. If value is a float between 0 and 1, it will be multiplied by the number of slices and rounded to the nearest integer. If None, the middle slice will be used. Defaults to None. |
None
|
grid_size |
int
|
The size of the grid. Defaults to 10. |
10
|
interactive |
bool
|
If True, returns an interactive widget. Defaults to True. |
True
|
figsize |
tuple
|
The size of the figure. Defaults to (15, 5). |
(10, 5)
|
show |
bool
|
If True, displays the plot (i.e. calls plt.show()). Defaults to False. |
False
|
Raises:
Type | Description |
---|---|
ValueError
|
If the axis to slice along is not 0, 1, or 2. |
ValueError
|
If the slice index is not an integer or a float between 0 and 1. |
Returns:
Name | Type | Description |
---|---|---|
fig |
interactive or Figure
|
If |
Note
The orientation of the vectors is visualized using an HSV color map, where the saturation corresponds to the vector component
of the slicing direction (i.e. z-component when choosing visualization along axis = 0
). Hence, if an orientation in the volume
is orthogonal to the slicing direction, the corresponding color of the visualization will be gray.
Example
import qim3d
vol = qim3d.examples.NT_128x128x128
val, vec = qim3d.processing.structure_tensor(vol)
# Visualize the structure tensor
qim3d.viz.vectors(vol, vec, axis = 2, interactive = True)

Source code in qim3d/viz/_structure_tensor.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
qim3d.viz.plot_cc
plot_cc(connected_components, component_indexs=None, max_cc_to_plot=32, overlay=None, crop=False, display_figure=True, color_map='viridis', value_min=None, value_max=None, **kwargs)
Plots the connected components from a qim3d.processing.cc.CC
object. If an overlay image is provided, the connected component will be masked to the overlay image.
Parameters
connected_components (CC): The connected components object.
component_indexs (list or tuple, optional): The components to plot. If None the first max_cc_to_plot=32 components will be plotted. Defaults to None.
max_cc_to_plot (int, optional): The maximum number of connected components to plot. Defaults to 32.
overlay (np.ndarray or None, optional): Overlay image. Defaults to None.
crop (bool, optional): Whether to crop the image to the cc. Defaults to False.
display_figure (bool, optional): Whether to show the figure. Defaults to True.
color_map (str, optional): Specifies the color map for the image. Defaults to "viridis".
value_min (float or None, optional): Together with vmax define the data range the colormap covers. By default colormap covers the full range. Defaults to None.
value_max (float or None, optional): Together with vmin define the data range the colormap covers. By default colormap covers the full range. Defaults to None
**kwargs (Any): Additional keyword arguments to pass to qim3d.viz.slices_grid
.
Returns
figs (list[plt.Figure]): List of figures, if display_figure=False
.
Example
import qim3d
vol = qim3d.examples.cement_128x128x128[50:150]
vol_bin = vol<80
cc = qim3d.segmentation.get_3d_cc(vol_bin)
qim3d.viz.plot_cc(cc, crop=True, display_figure=True, overlay=None, num_slices=5, component_indexs=[4,6,7])
qim3d.viz.plot_cc(cc, crop=True, display_figure=True, overlay=vol, num_slices=5, component_indexs=[4,6,7])


Source code in qim3d/viz/_cc.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
qim3d.viz.fade_mask
Interactive widget for visualizing the effect of edge fading on a 3D volume.
This can be used to select the best parameters before applying the mask.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The volume to apply edge fading to. |
required |
axis |
int
|
The axis along which to apply the fading. Defaults to 0. |
0
|
color_map |
str
|
Specifies the color map for the image. Defaults to "viridis". |
'magma'
|
value_min |
float or None
|
Together with value_max define the data range the colormap covers. By default colormap covers the full range. Defaults to None. |
None
|
value_max |
float or None
|
Together with value_min define the data range the colormap covers. By default colormap covers the full range. Defaults to None |
None
|
Returns:
Name | Type | Description |
---|---|---|
slicer_obj |
HBox
|
The interactive widget for visualizing fade mask on slices of a 3D volume. |
Source code in qim3d/viz/_data_exploration.py
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
|
qim3d.viz.line_profile
line_profile(volume, slice_axis=0, slice_index='middle', vertical_position='middle', horizontal_position='middle', angle=0, fraction_range=(0.0, 1.0))
Returns an interactive widget for visualizing the intensity profiles of lines on slices.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
The 3D volume of interest. |
required |
slice_axis |
int
|
Specifies the initial axis along which to slice. |
0
|
slice_index |
int or str
|
Specifies the initial slice index along slice_axis. |
'middle'
|
vertical_position |
int or str
|
Specifies the initial vertical position of the line's pivot point. |
'middle'
|
horizontal_position |
int or str
|
Specifies the initial horizontal position of the line's pivot point. |
'middle'
|
angle |
int or float
|
Specifies the initial angle (°) of the line around the pivot point. A float will be converted to an int. A value outside the range will be wrapped modulo. |
0
|
fraction_range |
tuple or list
|
Specifies the fraction of the line segment to use from border to border. Both the start and the end should be in the range [0.0, 1.0]. |
(0.0, 1.0)
|
Returns:
Name | Type | Description |
---|---|---|
widget |
VBox
|
The interactive widget. |
Source code in qim3d/viz/_data_exploration.py
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 |
|
qim3d.viz.threshold
This function provides an interactive interface to explore thresholding on a
3D volume slice-by-slice. Users can either manually set the threshold value
using a slider or select an automatic thresholding method from skimage
.
The visualization includes the original image slice, a binary mask showing regions above the threshold and an overlay combining the binary mask and the original image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
volume |
ndarray
|
3D volume to threshold. |
required |
cmap_image |
str
|
Colormap for the original image. Defaults to 'viridis'. |
'magma'
|
cmap_threshold |
str
|
Colormap for the binary image. Defaults to 'gray'. |
required |
vmin |
float
|
Minimum value for the colormap. Defaults to None. |
None
|
vmax |
float
|
Maximum value for the colormap. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
slicer_obj |
VBox
|
The interactive widget for thresholding a 3D volume. |
Interactivity
- Manual Thresholding: Select 'Manual' from the dropdown menu to manually adjust the threshold using the slider.
-
Automatic Thresholding: Choose a method from the dropdown menu to apply an automatic thresholding algorithm. Available methods include:
- Otsu
- Isodata
- Li
- Mean
- Minimum
- Triangle
- Yen
The threshold slider will display the computed value and will be disabled in this mode.
import qim3d
# Load a sample volume
vol = qim3d.examples.bone_128x128x128
# Visualize interactive thresholding
qim3d.viz.threshold(vol)

Source code in qim3d/viz/_data_exploration.py
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 |
|
qim3d.viz.colormaps
qim3d.viz.colormaps.qim
module-attribute
qim3d.viz.colormaps.segmentation
segmentation(num_labels, style='bright', first_color_background=True, last_color_background=False, background_color=(0.0, 0.0, 0.0), min_dist=0.5, seed=19)
Creates a random colormap to be used together with matplotlib. Useful for segmentation tasks
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num_labels |
int
|
Number of labels (size of colormap). |
required |
style |
str
|
'bright' for strong colors, 'soft' for pastel colors, 'earth' for yellow/green/blue colors, 'ocean' for blue/purple/pink colors. Defaults to 'bright'. |
'bright'
|
first_color_background |
bool
|
If True, the first color is used as background. Defaults to True. |
True
|
last_color_background |
bool
|
If True, the last color is used as background. Defaults to False. |
False
|
background_color |
tuple or str
|
RGB tuple or string for background color. Can be "black" or "white". Defaults to (0.0, 0.0, 0.0). |
(0.0, 0.0, 0.0)
|
min_dist |
int
|
Minimum distance between neighboring colors. Defaults to 0.5. |
0.5
|
seed |
int
|
Seed for random number generator. Defaults to 19. |
19
|
Returns:
Name | Type | Description |
---|---|---|
color_map |
LinearSegmentedColormap
|
Colormap for matplotlib |
Example
import qim3d
cmap_bright = qim3d.viz.colormaps.segmentation(num_labels=100, style = 'bright', first_color_background=True, background_color="black", min_dist=0.7)
cmap_soft = qim3d.viz.colormaps.segmentation(num_labels=100, style = 'soft', first_color_background=True, background_color="black", min_dist=0.2)
cmap_earth = qim3d.viz.colormaps.segmentation(num_labels=100, style = 'earth', first_color_background=True, background_color="black", min_dist=0.8)
cmap_ocean = qim3d.viz.colormaps.segmentation(num_labels=100, style = 'ocean', first_color_background=True, background_color="black", min_dist=0.9)
display(cmap_bright)
display(cmap_soft)
display(cmap_earth)
display(cmap_ocean)

import qim3d
vol = qim3d.examples.cement_128x128x128
binary = qim3d.filters.gaussian(vol, sigma = 2) < 60
labeled_volume, num_labels = qim3d.segmentation.watershed(binary)
color_map = qim3d.viz.colormaps.segmentation(num_labels, style = 'bright')
qim3d.viz.slicer(labeled_volume, slice_axis = 1, color_map=color_map)

Tip
It can be easily used when calling visualization functions as
which automatically detects number of unique classes and creates the colormap object with defualt arguments.Tip
The min_dist
parameter can be used to control the distance between neighboring colors.
Source code in qim3d/viz/colormaps/_segmentation.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|