We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 804934c commit e84958dCopy full SHA for e84958d
src/napari_matplotlib/histogram.py
@@ -33,7 +33,6 @@ def draw(self) -> None:
33
Clear the axes and histogram the currently selected layer/slice.
34
"""
35
layer = self.layers[0]
36
- print(layer.data.shape)
37
38
if layer.data.ndim - layer.rgb == 3:
39
# 3D data, can be single channel or RGB
@@ -47,7 +46,6 @@ def draw(self) -> None:
47
46
# Important to calculate bins after slicing 3D data, to avoid reading
48
# whole cube into memory.
49
bins = np.linspace(np.min(data), np.max(data), 100)
50
- print(bins)
51
52
if layer.rgb:
53
# Histogram RGB channels independently
0 commit comments