I have an array A that has shape (480, 640, 3), and an array B with shape (480, 640).
How can I append these two as one array with shape (480, 640, 4)?
I tried np.append(A,B) but it doesn't keep the dimension, while the axis option causes the ValueError: all the input arrays must have same number of dimensions.