forked from napari/napari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
magic_parameter_sweep.py
53 lines (42 loc) · 1.84 KB
/
magic_parameter_sweep.py
1
2
3
4
5
6
7
8
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
"""
magicgui parameter sweep
========================
Example showing how to accomplish a napari parameter sweep with magicgui.
It demonstrates:
1. overriding the default widget type with a custom class
2. the `auto_call` option, which calls the function whenever a parameter changes
.. tags:: gui
"""
import typing
from typing import Annotated
import skimage.data
import skimage.filters
import napari
# Define our gaussian_blur function.
# Note that we can use forward references for the napari type annotations.
# You can read more about them here:
# https://peps.python.org/pep-0484/#forward-references
# In this example, because we have already imported napari anyway, it doesn't
# really matter. But this syntax would let you specify that a parameter is a
# napari object type without actually importing or depending on napari.
# We also use the `Annotated` type to pass an additional dictionary that can be used
# to aid widget generation. The keys of the dictionary are keyword arguments to
# the corresponding magicgui widget type. For more information see
# https://napari.org/magicgui/api/widgets.html.
def gaussian_blur(
layer: 'napari.layers.Image',
sigma: Annotated[float, {'widget_type': 'FloatSlider', 'max': 6}] = 1.0,
mode: Annotated[str, {'choices': ['reflect', 'constant', 'nearest', 'mirror', 'wrap']}]='nearest',
) -> 'typing.Optional[napari.types.ImageData]':
"""Apply a gaussian blur to ``layer``."""
if layer:
return skimage.filters.gaussian(layer.data, sigma=sigma, mode=mode)
return None
# create a viewer and add some images
viewer = napari.Viewer()
viewer.add_image(skimage.data.astronaut().mean(-1), name='astronaut')
viewer.add_image(skimage.data.grass().astype('float'), name='grass')
# Add our magic function to napari
viewer.window.add_function_widget(gaussian_blur)
if __name__ == '__main__':
napari.run()