Note
Click here to download the full example code
Render plane manipulator (library)
An example controlling the render plane manipulator, using napari-threedee as a library.
Out:
/home/runner/work/napari-threedee/napari-threedee/src/napari_threedee/utils/napari_utils.py:65: FutureWarning: Access to QtViewer.view is deprecated since 0.5.0 and will be removed in the napari 0.6.0. Change to QtViewer.canvas.view instead.
return qt_viewer.view.scene
from napari_threedee.manipulators._qt import QtRenderPlaneManipulatorWidget
import napari
from skimage import data
viewer = napari.Viewer(ndisplay=3)
blobs = data.binary_blobs(
length=64, volume_fraction=0.1, n_dim=3
).astype(float)
plane_parameters = {
'position': (32, 32, 32),
'normal': (1, 0, 0),
'thickness': 10,
}
plane_layer = viewer.add_image(
blobs,
rendering='average',
name='plane',
colormap='bop orange',
blending='additive',
opacity=0.5,
depiction='plane',
plane=plane_parameters
)
volume_layer = viewer.add_image(
blobs, rendering='mip', name='volume', blending='additive', opacity=0.25
)
widget = QtRenderPlaneManipulatorWidget(viewer)
viewer.window.add_dock_widget(widget)
napari.run()
Total running time of the script: ( 0 minutes 1.298 seconds)
Download Python source code: render_plane_manipulator_library.py
Download Jupyter notebook: render_plane_manipulator_library.ipynb