ANTsPy
ANTsPy copied to clipboard
right operands not implemented
img = ants.from_numpy(np.zeros(10, 10, 10))
img * 1 # works
1 * img # type error
fix is straightforward, add a case to each operand for when other
is a number.