Open jboulanger91 opened 1 week ago
As a remark: uploding meshes works fine
Hi! Sorry for taking so long to get back to you. The problem is that Neuroglancer is looking for a skeleton info file.
You can fix that by doing this:
vol.skeleton.meta.info["vertex_attributes"].pop()
vol.skeleton.meta.commit_info()
The pop command on the first line is to remove a uint8 attribute that neuroglancer can't handle currently.
Hello,
I tried to upload skeletons to neuroglancer using the following function:
vol.skeleton.upload_raw(777, skel.vertices, skel.edges)
after creating a skeletons layer:Trying to load this layer into skelunker or the main neuroglancer branch results in an error 404. Unless I'm wrong somewhere, it would be nice to be able to make it work with the newer branches.
Thanks a lot, Jon