You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Refactored the BufferedSliceWriter and added a BufferedSliceReader. [#425](https://github.com/scalableminds/webknossos-libs/pull/425)
22
+
- BufferedSliceWriter
23
+
- The data no longer gets transposed: previously the format of the slices was [y,x]; now it is [x,y]
24
+
- The interface of the constructor was changed:
25
+
- A `View` (or `MagView`) is now required as datasource
26
+
- The parameter `dimension` can be used to specify the axis along the data is sliced
27
+
- The offset is expected to be in the magnification of the view
28
+
- 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).
29
+
- BufferedSliceReader
30
+
- This class was added complementary to the BufferedSliceWriter
31
+
- Added methods to get a BufferedSliceReader/BufferedSliceWriter from a View directly
- Refactored the BufferedSliceWriter and added a BufferedSliceReader. [#425](https://github.com/scalableminds/webknossos-libs/pull/425)
14
-
- BufferedSliceWriter
15
-
- The data no longer gets transposed: previously the format of the slices was [y,x]; now it is [x,y]
16
-
- The interface of the constructor was changed:
17
-
- A `View` (or `MagView`) is now required as datasource
18
-
- The parameter `dimension` can be used to specify the axis along the data is sliced
19
-
- The offset is expected to be in the magnification of the view
20
-
- 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).
21
-
- BufferedSliceReader
22
-
- This class was added complementary to the BufferedSliceWriter
23
-
- Added methods to get a BufferedSliceReader/BufferedSliceWriter from a View directly
0 commit comments