forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_toggle_visibility.py
51 lines (46 loc) · 1.47 KB
/
example_toggle_visibility.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
import argparse
import neuroglancer
import neuroglancer.cli
if __name__ == "__main__":
ap = argparse.ArgumentParser()
neuroglancer.cli.add_server_arguments(ap)
args = ap.parse_args()
neuroglancer.cli.handle_server_arguments(args)
viewer = neuroglancer.Viewer()
def toggle_visibility(s):
with viewer.txn() as s:
if s.layers["a"].visible is True:
s.layers["a"].visible = False
print("Setting visibility to false")
else:
s.layers["a"].visible = True
print("Setting visibility to true")
viewer.actions.add("toggle-visibility", toggle_visibility)
with viewer.config_state.txn() as s:
s.input_event_bindings.viewer["keys"] = "toggle-visibility"
with viewer.txn() as s:
s.dimensions = neuroglancer.CoordinateSpace(
names=["x", "y"], units="nm", scales=[1, 1]
)
s.position = [150, 150]
s.layers.append(
name="a",
layer=neuroglancer.LocalAnnotationLayer(
dimensions=s.dimensions,
annotations=[
neuroglancer.PointAnnotation(
id="1",
point=[150, 150],
),
],
shader="""
void main() {
setColor(prop_color());
setPointMarkerSize(prop_size());
}
""",
),
)
s.layout = "xy"
s.selected_layer.layer = "a"
print(viewer)