Skip to content

Commit

Permalink
Fix #604 (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
janden authored and garrettwrong committed Apr 15, 2022
1 parent 121367f commit f8fd84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aspire/source/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def __init__(self, im, metadata=None, angles=None):

# Create filter indices, these are required to pass unharmed through filter eval code
# that is potentially called by other methods later.
self.filter_indices = np.zeros(self.n)
self.filter_indices = np.zeros(self.n, dtype=int)
self.unique_filters = [IdentityFilter()]

# Optionally populate angles/rotations.
Expand Down

0 comments on commit f8fd84d

Please sign in to comment.