We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e58906 + cc3bb8b commit 76b36f6Copy full SHA for 76b36f6
1 file changed
bioformats/omexml.py
@@ -643,6 +643,13 @@ def set_PhysicalSizeY(self, value):
643
self.node.set("PhysicalSizeY", str(value))
644
PhysicalSizeY = property(get_PhysicalSizeY, set_PhysicalSizeY)
645
646
+ def get_PhysicalSizeZ(self):
647
+ '''The size of a voxel in Z direction or None for 2D images.'''
648
+ return get_float_attr(self.node, "PhysicalSizeZ")
649
+ def set_PhysicalSizeZ(self, value):
650
+ self.node.set("PhysicalSizeZ", str(value))
651
+ PhysicalSizeZ = property(get_PhysicalSizeZ, set_PhysicalSizeZ)
652
+
653
def set_PixelType(self, value):
654
self.node.set("Type", value)
655
PixelType = property(get_PixelType, set_PixelType)
0 commit comments