|
@ -16,6 +16,15 @@ class Image(object): |
|
|
self._width = width |
|
|
self._width = width |
|
|
self._data = None |
|
|
self._data = None |
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self): |
|
|
|
|
|
return "\n".join(["<ND2 Image>", |
|
|
|
|
|
"%sx%s (HxW)" % (self._height, self._width), |
|
|
|
|
|
"Timestamp: %s" % self.timestamp, |
|
|
|
|
|
"Field of View: %s" % self.field_of_view, |
|
|
|
|
|
"Channel: %s" % self.channel, |
|
|
|
|
|
"Z-Level: %s" % self.z_level, |
|
|
|
|
|
]) |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def field_of_view(self): |
|
|
def field_of_view(self): |
|
|
return self._field_of_view |
|
|
return self._field_of_view |
|
@ -56,6 +65,10 @@ class ImageSet(object): |
|
|
def __init__(self): |
|
|
def __init__(self): |
|
|
self._images = collections.defaultdict(dict) |
|
|
self._images = collections.defaultdict(dict) |
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self): |
|
|
|
|
|
return "\n".join(["<ND2 Image Set>", |
|
|
|
|
|
"Image count: %s" % len(self)]) |
|
|
|
|
|
|
|
|
def get(self, channel="", z_level=0): |
|
|
def get(self, channel="", z_level=0): |
|
|
""" |
|
|
""" |
|
|
Retrieve an image with a given channel and z-level. For most users, z_level will always be 0. |
|
|
Retrieve an image with a given channel and z-level. For most users, z_level will always be 0. |
|
|