Skip to content

v0.8.16

Choose a tag to compare

@fm3 fm3 released this 30 Sep 09:11
· 784 commits to master since this release
4b20c69

wkcuber:

  • Add jp2 support. #428
  • Fixed the string translation for signed int layer. #428

webknossos python lib:

  • Refactored the BufferedSliceWriter and added a BufferedSliceReader. #425
  • Breaking changes in BufferedSliceWriter:
    • The data no longer gets transposed: previously the format of the slices was [y,x]; now it is [x,y]
    • The interface of the constructor was changed:
      • A View (or MagView) is now required as datasource
      • The parameter dimension can be used to specify the axis along the data is sliced
      • The offset is expected to be in the magnification of the view
    • This class is now supposed to be used within a context manager and the slices are written by sending them to the generator (see documentation of the class).
  • BufferedSliceReader
    • This class was added complementary to the BufferedSliceWriter
  • Added methods to get a BufferedSliceReader/BufferedSliceWriter from a View directly