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.