(original) (raw)

On Tue, 26 Jun 2018 at 16:24, Juan Nunez-Iglesias <jni.soma@gmail.com> wrote:
> Plain indexing arr\[...\] should return an error for ambiguous cases. \[...\] This includes every use of vectorized indexing with multiple integer arrays.

This line concerns me. In scikit-image, we often do:

rr, cc = coords.T # coords is an (n, 2) array of integer coordinates
values = image\[rr, cc\]

Are you saying that this use is deprecated? Because we love it at scikit-image. I would be very very very sad to lose this syntax.

I second Juan's sentiments wholeheartedly here.