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.
One bug in histogram widget right now:
Whenever we display data with constant value (say, something that is all zeros or all ones), the histogram computations throw a divide by zero error.
Concretely: data = np.zeros((20, 10, 5)) iw = ImageWidget(data) iw.show()
will throw an error.