-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_toggle_visibility.py
More file actions
49 lines (45 loc) · 1.49 KB
/
example_toggle_visibility.py
File metadata and controls
49 lines (45 loc) · 1.49 KB
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
from __future__ import print_function
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 == 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)