Skip to content

Commit a66cc66

Browse files
authored
bugfix: ZVI file format issue (#108)
1 parent 39b9986 commit a66cc66

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/bfio/backends.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,10 @@ def _read_image(self, X, Y, Z, C, T, output):
10231023
# information once.
10241024

10251025
# For now, we are adding some basic caching
1026-
if self._rdr.getFormat() not in ["Zeiss CZI"]:
1026+
if self._rdr.getFormat() not in [
1027+
"Zeiss CZI",
1028+
"Zeiss Vision Image (ZVI)",
1029+
]:
10271030
if interleaved:
10281031
image = image[c :: self.frontend.spp]
10291032
image = image.reshape(y_range, x_range)

0 commit comments

Comments
 (0)