- Make Imread __init__ signature more compatible with typing.

- Support czi metadata version 1.1.
This commit is contained in:
Wim Pomp
2024-04-24 17:11:58 +02:00
parent 8bf1646736
commit c13ae9d4ad
4 changed files with 409 additions and 416 deletions

View File

@@ -63,11 +63,11 @@ automatically recognize it and use it to open the appropriate file format. Image
are required to implement the following methods:
- staticmethod _can_open(path): return True if path can be opened by this reader
- property ome: reads metadata from file and adds them to an OME object imported
from the ome-types library
- \_\_frame__(self, c, z, t): return the frame at channel=c, z-slice=z, time=t from the file
Optional methods:
- get_ome: reads metadata from file and adds them to an OME object imported
from the ome-types library
- open(self): maybe open some file handle
- close(self): close any file handles