Skip to content
Snippets Groups Projects
Commit f2259781 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

calcExpansion was not handling empty coverage.

parent c60cda17
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ class ImageWrapper(notifier.Notifier): ...@@ -133,7 +133,7 @@ class ImageWrapper(notifier.Notifier):
# - third dimension: slice/volume index # - third dimension: slice/volume index
self.__coverage = np.zeros( self.__coverage = np.zeros(
(2, self.__numRealDims - 1, image.shape[self.__numRealDims - 1]), (2, self.__numRealDims - 1, image.shape[self.__numRealDims - 1]),
dtype=np.uint32) dtype=np.float32)
self.__coverage[:] = np.nan self.__coverage[:] = np.nan
...@@ -429,6 +429,13 @@ def calcExpansion(slices, coverage): ...@@ -429,6 +429,13 @@ def calcExpansion(slices, coverage):
for vol in range(lowVol, highVol): for vol in range(lowVol, highVol):
# No coverage of this volume -
# we need the whole slice.
if np.any(np.isnan(coverage[:, :, vol])):
volumes .append(vol)
expansions.append([(s[0], s[1]) for s in slices[:numDims]])
continue
# First we'll figure out the index # First we'll figure out the index
# range for each dimension that # range for each dimension that
# needs to be added to the coverage. # needs to be added to the coverage.
...@@ -437,14 +444,12 @@ def calcExpansion(slices, coverage): ...@@ -437,14 +444,12 @@ def calcExpansion(slices, coverage):
# containing: # containing:
# (dimension, lowIndex, highIndex) # (dimension, lowIndex, highIndex)
reqRanges = [] reqRanges = []
for dim in range(numDims): for dim in range(numDims):
lowCover, highCover = coverage[:, dim, vol] lowCover, highCover = coverage[:, dim, vol]
lowSlice, highSlice = slices[ dim] lowSlice, highSlice = slices[ dim]
if np.isnan(lowCover): lowCover = lowSlice
if np.isnan(highCover): highCover = highSlice
# The slice covers a region # The slice covers a region
# below the current coverage # below the current coverage
if lowCover - lowSlice > 0: if lowCover - lowSlice > 0:
......
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