
July 20, 2021
7:04 p.m.
On Tue, Jul 20, 2021, at 11:57, Alexandre de Siqueira wrote:
sorry if that was implicit, but this won't be against Hinsen. My point is that old code would break when using skimage v1, since we _will_ modify the API a lot. I don't think that we intend breaking anything silently :)
W.r.t. the `preserve_range` flag, we will remove the flag and no longer do implicit conversion. So, passing the same code through the two versions will give different results. Current skimage: from skimage import foo foo(uint8_arr) -> [0, 1.0, 0.502] New skimage: foo(uint8_arr) -> [0, 255.0, 128.0] Stéfan