cosmo-ethz/seek

Boolean operation error

Opened this issue · 2 comments

Dear developers;

I found out that there is an inconsistency between your package and newer version of numpy, so I've correct it as below way:

sum_threshold.py: line 189:

dilated_mask = binary_mask_dilation(dilated_mask - mask, **di_kwargs)

    dilated_mask = binary_mask_dilation(np.logical_xor(dilated_mask, mask), **di_kwargs)

Sweet. Could you send me a Pull Request that I can merge into the codebase?

It's done.