On Wed, Jul 17, 2013 at 4:56 AM, <wishmen@walla.co.il> wrote:
How can I cancel the "skimage.dtype_converter: WARNING: Possible precision loss when converting from float64 to uint8" warning in the output?, is it possible?


The warning messages are a bit annoying. We're discussing ways of making it less annoying here:

https://github.com/scikit-image/scikit-image/issues/543

For now you can just disable that logger:

from skimage.util import dtype
dtype.log.disabled = True

Cheers,
-Tony