mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-17 11:32:45 +08:00
BUG: Fix typo in montage--xrange is no longer supported.
This commit is contained in:
@@ -74,7 +74,7 @@ def montage2d(arr_in, fill='mean', rescale_intensity=False):
|
||||
|
||||
# -- rescale intensity if necessary
|
||||
if rescale_intensity:
|
||||
for i in xrange(n_images):
|
||||
for i in range(n_images):
|
||||
arr_in[i] = exposure.rescale_intensity(arr_in[i])
|
||||
|
||||
# -- determine alpha
|
||||
|
||||
Reference in New Issue
Block a user