Skip to content

Commit ef47844

Browse files
committed
Signed-off-by: YunLiu <[email protected]>
1 parent 4679fed commit ef47844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monai/auto3dseg/analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def __call__(self, data):
256256
)
257257

258258
report[ImageStatsKeys.SIZEMM] = [
259-
int(a * b) for a, b in zip(report[ImageStatsKeys.SHAPE][0], report[ImageStatsKeys.SPACING])
259+
a * b for a, b in zip(report[ImageStatsKeys.SHAPE][0], report[ImageStatsKeys.SPACING])
260260
]
261261

262262
report[ImageStatsKeys.INTENSITY] = [

0 commit comments

Comments
 (0)