You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python/imshow.md
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -399,5 +399,57 @@ for compression_level in range(0, 9):
399
399
fig.show()
400
400
```
401
401
402
+
### Exploring 3-D images and timeseries with `facet_col`
403
+
404
+
*Introduced in plotly 4.11*
405
+
406
+
For three-dimensional image datasets, obtained for example by MRI or CT in medical imaging, one can explore the dataset by representing its different planes as facets. The `facet_col` argument specifies along which axes the image is sliced through to make the facets. With `facet_col_wrap` , one can set the maximum number of columns.
407
+
408
+
It is recommended to use `binary_string=True` for facetted plots of images in order to keep a small figure size and a short rendering time.
409
+
410
+
See the [tutorial on facet plots](/python/facet-plots/) for more information on creating and styling facet plots.
### Exploring 3-D images and timeseries with `animation_frame`
438
+
439
+
*Introduced in plotly 4.11*
440
+
441
+
For three-dimensional image datasets, obtained for example by MRI or CT in medical imaging, one can explore the dataset by sliding through its different planes in an animation. The `animation_frame` argument of `px.imshow` sets the axis along which the 3-D image is sliced in the animation.
0 commit comments