seung-lab / neuroglancer

WebGL-based viewer for volumetric data
https://neuromancer-seung-import.appspot.com/
Apache License 2.0
22 stars 10 forks source link

how can I start this local service VS google neuroglancer #618

Closed liuyx599 closed 1 year ago

liuyx599 commented 1 year ago

when i used the google/neuroglancer,i install neuroglancer using pip pip install neuroglancer and then i can start a local neuroglancer server like following codes

import neuroglancer
ip = 'localhost' #or public IP of the machine for sharable display
port = 2333 #change to an unused port number
neuroglancer.set_server_bind_address(bind_address=ip,bind_port=port)
viewer = neuroglancer.Viewer()
print(viewer)

the viewer is

http://localhost:2333/v/c19fc9196413e9ac3f543c5e662295697c097a11/

I can copy the above link to Chrome and get a front page for the neuroglancer. If I want to use your version of neuroglancer, how will I start this local service