Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelmassot committed Nov 22, 2023
1 parent 1cdeeb5 commit 43652d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/correct_images/corrector.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,12 +811,14 @@ def generate_attenuation_correction_parameters(self):
self.image_channels,
),
dtype=np.float32,
memmap_location=self.memmap_location,
)
self.memmaps_to_remove.append(images_fn)

distances_fn, distances_map = open_memmap(
shape=(len(hist_bins) - 1, self.image_height * self.image_width),
dtype=np.float32,
memmap_location=self.memmap_location,
)
self.memmaps_to_remove.append(distances_fn)

Expand Down Expand Up @@ -923,6 +925,7 @@ def generate_attenuation_correction_parameters(self):
self.image_channels,
),
dtype=np.float32,
memmap_location=self.memmap_location,
)
"""

Expand Down

0 comments on commit 43652d7

Please sign in to comment.