Skip to content
Snippets Groups Projects
Commit 6e253555 authored by anttil's avatar anttil
Browse files

SSDM-2278: Update to Bio-Formats 5.1.3

SVN: 34404
parent fecd5384
No related branches found
No related tags found
No related merge requests found
......@@ -344,7 +344,7 @@ class BioFormatsProcessor:
if voxelX is None:
voxelX = 0;
else:
voxelX = voxelX.getValue()
voxelX = voxelX.value()
self._metadata[n]['voxelSizeX'] = voxelX
......@@ -353,7 +353,7 @@ class BioFormatsProcessor:
if voxelY is None:
voxelY = 0;
else:
voxelY = voxelY.getValue()
voxelY = voxelY.value()
self._metadata[n]['voxelSizeY'] = voxelY
......@@ -362,7 +362,7 @@ class BioFormatsProcessor:
if voxelZ is None:
voxelZ = 0;
else:
voxelZ = voxelZ.getValue()
voxelZ = voxelZ.value()
self._metadata[n]['voxelSizeZ'] = voxelZ
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment