Visualise detected centre and tracked fibre
To visualise volume accross the slice, detected centres and tracked fibre
fibretracker.viz
fibretracker.viz.orthogonal
Interactive widget for visualizing orthogonal slices of a 3D volume.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray or Tensor
|
The 3D volume to be sliced. |
required |
cmap |
str
|
Specifies the color map for the image. Defaults to "gray". |
'gray'
|
img_height(int, |
optional
|
Height of the figure. |
required |
img_width(int, |
optional
|
Width of the figure. |
required |
Returns:
Name | Type | Description |
---|---|---|
orthogonal_obj |
HBox
|
The interactive widget for visualizing orthogonal slices of a 3D volume. |
Example
import fibretracker as ft
vol = ft.io.load("path/to/volume.txm")
ft.viz.orthogonal(vol, cmap="gray")

Source code in fibretracker/viz/visualize.py
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 |
|
fibretracker.viz.slicer
Interactive widget for visualizing slices of a 3D volume and fibres centre if provided.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The 3D volume to be sliced. |
required |
detect_coords |
list
|
List of coordinates of detected fibres. Defaults to None. |
None
|
mark_size |
int
|
Size of the marker for detected fibres. Defaults to None. |
None
|
axis |
int
|
Specifies the axis, or dimension, along which to slice. Defaults to 0. |
0
|
cmap |
str
|
Specifies the color map for the image. Defaults to "gray". |
'gray'
|
img_height |
int
|
Height of the figure. Defaults to 5. |
5
|
img_width |
int
|
Width of the figure. Defaults to 5. |
5
|
Returns:
Name | Type | Description |
---|---|---|
slicer_obj |
interactive
|
The interactive widget for visualizing slices of a 3D volume. |
Example
import fibretracker as ft
# Load the volume and visualize the slices
vol = ft.io.load("path/to/volume.txm")
ft.viz.slicer(vol)

import fibretracker as ft
# Load the volume and detected coordinates
vol = ft.io.load("path/to/volume.txm")
vol = ft.io.normalize(vol)
vol = vol[100:350] # 250 slices along the z-axis
detect_coords = ft.models.get_fibre_coords(vol)
ft.viz.slicer(vol, detect_coords=detect_coords, mark_size=4)
Source code in fibretracker/viz/visualize.py
fibretracker.viz.plot_tracks
Plot tracks of fibres detected in the volume
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracks |
List[ndarray]
|
List of arrays of shape (n_points, 3) |
required |
grid |
bool
|
Whether to show grid in the plot |
False
|
Returns:
Name | Type | Description |
---|---|---|
fig |
Figure
|
matplotlib figure object |
Example
import fibretracker as ft
# Load the volume and detected coordinates
vol = ft.io.load("path/to/volume.txm")
vol = ft.io.normalize(vol)
vol = vol[100:350] # 250 slices along the z-axis
detect_coords = ft.models.get_fibre_coords(vol)
tracks_gauss = ft.models.track_fibres(coords=detect_coords, smoothtrack_gaussian=True)
ft.viz.plot_tracks(tracks_gauss)