janelia-flyem / gala

Automatic segmentation of electron microscopy volumes
BSD 3-Clause "New" or "Revised" License
75 stars 29 forks source link

Allow use of DVID volumes as back-end #58

Open jni opened 9 years ago

jni commented 9 years ago

PyDVID might be useful:

stephenplaza commented 9 years ago

Please do not use pydvid. It is deprecated. Use libdvid-cpp which has a libdvid python implementation. It is fast and up-to-date.

jni commented 9 years ago

Noted! Maybe put a big fat "DEPRECATED" sign on the PyDVID docs and readme... =)

stephenplaza commented 9 years ago

Fair enough :) I just added a quick line to libdvid-cpp noting that there are copious examples of the API in the unit tests for both C++ and python API. At some point, I need to document the python API as well as the C++ one is documented.

In general, the C++ library tries to implement the "best of" DVID API plus some special functions. We expose much of this through the python API. If you need other things exposed, ask Stuart or me and it should be doable. Right now there are some heavier-duty stuff not exposed like a parallel tile and sparse block fetcher.