We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca7b3c commit cc3bb8bCopy full SHA for cc3bb8b
1 file changed
bioformats/omexml.py
@@ -622,6 +622,13 @@ def set_PhysicalSizeY(self, value):
622
self.node.set("PhysicalSizeY", str(value))
623
PhysicalSizeY = property(get_PhysicalSizeY, set_PhysicalSizeY)
624
625
+ def get_PhysicalSizeZ(self):
626
+ '''The size of a voxel in Z direction or None for 2D images.'''
627
+ return get_float_attr(self.node, "PhysicalSizeZ")
628
+ def set_PhysicalSizeZ(self, value):
629
+ self.node.set("PhysicalSizeZ", str(value))
630
+ PhysicalSizeZ = property(get_PhysicalSizeZ, set_PhysicalSizeZ)
631
+
632
def set_PixelType(self, value):
633
self.node.set("Type", value)
634
PixelType = property(get_PixelType, set_PixelType)
0 commit comments