Skip to content
William Silversmith edited this page Jun 12, 2019 · 39 revisions

Sharpen your CloudVolume skills.

Every skill you learn here will help bring us all closer to the day when you can learn by streaming data straight into your brain.

Ready to Use Example

This uses the public Kasthuri et al somatosensory cortex dataset. Open Viewer

Kasthuri, Narayanan, et al. "Saturated reconstruction of a volume of neocortex." Cell 162.3 (2015): 648-661. (link)

from cloudvolume import CloudVolume, view

cv = CloudVolume(
   'https://storage.googleapis.com/neuroglancer-public-data/kasthuri2011/image_color_corrected', 
    progress=True, cache=True
)

img = cv.download_point( (5188, 9096, 1198), mip=0, size=(512, 512, 64) )
view(img) # open your browser to https://localhost:8080 to view

Basic Topics

Advanced Topics