- base & view model for imread

- transforms bugfix
- implement (nan)var and (nan)std
- add tests
This commit is contained in:
Wim Pomp
2023-08-18 18:10:42 +02:00
parent bdd7a5399c
commit ff6c1aa8a8
13 changed files with 929 additions and 779 deletions

View File

@@ -8,7 +8,7 @@ from ome_types._base_type import quantity_property
from itertools import product
from datetime import datetime
from abc import ABC
from .. import Imread
from .. import AbstractReader
def lazy_property(function, field, *arg_fields):
@@ -36,7 +36,7 @@ class Plane(model.Plane):
return float((datetime.strptime(info["Time"], "%Y-%m-%d %H:%M:%S %z") - t0).seconds)
class Reader(Imread, ABC):
class Reader(AbstractReader, ABC):
priority = 10
@staticmethod