We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1496ae3 commit 94ec6ecCopy full SHA for 94ec6ec
active_plugins/histogramequalization.py
@@ -175,7 +175,7 @@ def run(self, workspace):
175
clip_limit = self.clip_limit.value
176
177
if self.do_3D.value:
178
- y_data = numpy.zeros_like(x_data, dtype=numpy.float)
+ y_data = numpy.zeros_like(x_data, dtype=float)
179
if self.do_framewise.value:
180
for index, plane in enumerate(x_data):
181
y_data[index] = skimage.exposure.equalize_adapthist(
@@ -202,7 +202,7 @@ def run(self, workspace):
202
)
203
else:
204
205
206
207
208
y_data[index] = skimage.exposure.equalize_hist(
0 commit comments